Last active
January 1, 2017 18:09
-
-
Save Caio99BR/259c3ea9045b1438ce1de9d457e29281 to your computer and use it in GitHub Desktop.
Update SDK, autoconfirm license questions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Update SDK, autoconfirm license questions | |
expect -c ' | |
set timeout -1 ; | |
spawn ${1} update sdk --no-ui --all; | |
expect { | |
"Do you accept the license" { exp_send "y\r" ; exp_continue } | |
eof | |
} | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment