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