mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-26 03:17:29 +08:00
8 lines
174 B
Plaintext
8 lines
174 B
Plaintext
#! /usr/bin/expect -f
|
|
|
|
set timeout -1
|
|
spawn sudo /usr/sbin/softwareupdate --restart --verbose --install "MACOSUPDATE"
|
|
expect "Password*"
|
|
send "[lindex $argv 0]\r"
|
|
expect eof
|