This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src in repository toolchain/semiautobench.
The following commit(s) were added to refs/heads/inserted_src by this push: new 29fd5dc Suppress output of ssh-keygen 29fd5dc is described below
commit 29fd5dc19fe6e814f3c4878f3df902fadcb258fc Author: Bernard Ogden bernie.ogden@linaro.org Date: Mon Jul 13 11:40:16 2015 +0200
Suppress output of ssh-keygen
Likely just the randomart image, but still it's noise.
Change-Id: Ie679bfdef80ecf3127226dc17a7db8d548c59c72 --- invoke_session_debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/invoke_session_debian b/invoke_session_debian index 9abc453..2c1bab5 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -51,7 +51,7 @@ sed -i 's#ssh://git@dev-private.git.linaro.org#ssh://localhost [...]
#Generate one-time key mkdir ~/data || exit 1 -if ! ssh-keygen -P '' -f ~/data/onetime < /dev/null; then +if ! ssh-keygen -P '' -f ~/data/onetime > /dev/null < /dev/null; then rm -rf ~/data exit 1 fi