libc-rs/ci/android-accept-licenses.sh

15 lines
211 B
Bash
Raw Normal View History

2015-09-12 20:22:42 +02:00
#!/usr/bin/expect -f
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
}