This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository buildscripts. commit 6869b6a63d91f06c6c589aeb2ea288fff5b460a1 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon May 15 16:51:51 2017 +0200 bin/signtarballs: actually try to go into the directory that we looked for. --- bin/signtarballs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/signtarballs b/bin/signtarballs index 981ee52..d2ce58d 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -5,9 +5,9 @@ typeset to_dir="${1}" if [ -n "${to_dir}" ] && [ -d "${to_dir}" ]; then cd "${to_dir}" elif [ -d "_releases_" ]; then - cd "_releases" + cd "_releases_" elif [ -d "../_releases_" ]; then - cd "../_releases" + cd "../_releases_" else exit 1 fi -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git