0db6b00660
Jenkins didn't like the previous expect script. This one should work. Change-Id: Ic94daef65f342a12f8f194163271f2204ba28b27
11 lines
119 B
Plaintext
Executable File
11 lines
119 B
Plaintext
Executable File
#!/usr/bin/expect
|
|
set timeout -1
|
|
|
|
spawn "./rpmbuild/build_rpm.sh"
|
|
|
|
expect "Enter pass phrase: "
|
|
send "\n"
|
|
|
|
expect eof
|
|
|