12345678910111213141516171819 |
- #/usr/bin/expect -f
- # set NPM_USERNAME [lindex $argv 0];
- # set NPM_PASSWORD [lindex $argv 1];
- # set STACKFUEL_DEVELOPER_EMAIL [lindex $argv 2];
- set timeout 5
- match_max 100000
- spawn bash /guix-install.sh
- expect "Press return to continue..."
- send "\r"
- # expect {
- # timeout exit 1
- # expect eof
- # }
|