| Alex Crichton | c284246 | 2016-11-16 14:12:12 -0800 | [diff] [blame] | 1 | #!/usr/bin/expect -f |
| 2 | # ignore-license | ||||
| 3 | |||||
| 4 | set timeout 1800 | ||||
| 5 | set cmd [lindex $argv 0] | ||||
| 6 | set licenses [lindex $argv 1] | ||||
| 7 | |||||
| 8 | spawn {*}$cmd | ||||
| 9 | expect { | ||||
| 10 | "Do you accept the license '*'*" { | ||||
| 11 | exp_send "y\r" | ||||
| 12 | exp_continue | ||||
| 13 | } | ||||
| 14 | eof | ||||
| 15 | } | ||||