blob: 776adf6f4231463e4b7c19f237847873396fdbdf [file] [log] [blame]
Alex Crichton79199af2015-09-12 11:22:42 -07001#!/usr/bin/expect -f
2
3set timeout 1800
4set cmd [lindex $argv 0]
5set licenses [lindex $argv 1]
6
7spawn {*}$cmd
8expect {
9 "Do you accept the license '*'*" {
10 exp_send "y\r"
11 exp_continue
12 }
13 eof
14}