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