This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 7c1638a bin: add new save-sync.sh script to re-sync this repository. new 6869b6a bin/signtarballs: actually try to go into the directory that we looked for. 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/signtarballs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 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 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