diff options
Diffstat (limited to 'libc/ci/android-accept-licenses.sh')
-rwxr-xr-x | libc/ci/android-accept-licenses.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/ci/android-accept-licenses.sh b/libc/ci/android-accept-licenses.sh new file mode 100755 index 0000000..8d8f60a --- /dev/null +++ b/libc/ci/android-accept-licenses.sh @@ -0,0 +1,15 @@ +#!/usr/bin/expect -f +# ignore-license + +set timeout 1800 +set cmd [lindex $argv 0] +set licenses [lindex $argv 1] + +spawn {*}$cmd +expect { + "Do you accept the license '*'*" { + exp_send "y\r" + exp_continue + } + eof +} |