From b7ddbc48b1cae2503e679306282e69b5f80a0bdd Mon Sep 17 00:00:00 2001 From: James Laska Date: Wed, 9 Sep 2015 12:13:55 -0400 Subject: [PATCH] Disable timeout and correct sign.exp error --- tools/scripts/sign.exp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/scripts/sign.exp b/tools/scripts/sign.exp index ac279fab42..c33e70bbde 100755 --- a/tools/scripts/sign.exp +++ b/tools/scripts/sign.exp @@ -3,7 +3,8 @@ # Helper script to respond to passphrase prompts from the gpg command. # -set timeout 600 +# Disable timeout +set timeout -1 # Optionally print usage message if {[llength $argv] <= 0} { @@ -28,7 +29,7 @@ expect { exp_continue } timeout { - puts "[error] expect timeout" + puts "expect timeout" exit 1 } eof { }