mirror of
https://github.com/actions/runner-images.git
synced 2025-12-10 11:07:02 +00: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
|