This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from b7d374b bin/rpmsign-unattended: wrap send command in a block, otherwise older expect versions fail to parse the flag. new 9a0509a bin/rpmsign-unattended: handle early EOFs more gracefully. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: bin/rpmsign-unattended | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit 9a0509aaa391437bfe81a8dcc4a47be6bd401785 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Sep 8 07:57:14 2017 +0200 bin/rpmsign-unattended: handle early EOFs more gracefully. --- bin/rpmsign-unattended | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/rpmsign-unattended b/bin/rpmsign-unattended index 9846457..30fd934 100755 --- a/bin/rpmsign-unattended +++ b/bin/rpmsign-unattended @@ -2,6 +2,7 @@ spawn rpmsign {*}$argv expect { - -ex "Enter pass phrase: " { send -- "\r"; } + -ex "Enter pass phrase: " { send -- "\r" } + eof { exit } } expect eof -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git