This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 2792f98 bin/build-osx-package: fix wrong variable names. new 60fc38c bin/build-osx-package: also upload the other generated files (currently only *.dmg.git.txt.) new 7bfcfe0 bin/build-osx-package: call correct script to generate checksums via sudo . new 044eb49 bin/signtarballs: we want the parameter/to_dir to be non-NULL. The 3 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/build-osx-package | 4 ++-- bin/signtarballs | 2 +- 2 files changed, 3 insertions(+), 3 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 044eb49fcc1096ca110fade4e08f72bc1de83690 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Apr 7 12:40:15 2017 +0200 bin/signtarballs: we want the parameter/to_dir to be non-NULL. --- bin/signtarballs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/signtarballs b/bin/signtarballs index 5c305bc..981ee52 100755 --- a/bin/signtarballs +++ b/bin/signtarballs @@ -2,7 +2,7 @@ typeset to_dir="${1}" -if [ -z "${to_dir}" ] && [ -d "${to_dir}" ]; then +if [ -n "${to_dir}" ] && [ -d "${to_dir}" ]; then cd "${to_dir}" elif [ -d "_releases_" ]; then cd "_releases" -- 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 60fc38cfa10bef5a7284b2fd105f64c137a1f4f3 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Apr 7 12:34:32 2017 +0200 bin/build-osx-package: also upload the other generated files (currently only *.dmg.git.txt.) --- bin/build-osx-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-osx-package b/bin/build-osx-package index 6306871..b19f63f 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -309,7 +309,7 @@ upload_packages() { # Remove packages that are older than 30 days, if building nightlies. [ "${COMPONENT}" = "${COMPONENT_NIGHTLY}" ] && 0</dev/null ssh -- "${REPOS_SERVER}" "find '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/' -mtime +30 -name '*.dmg' -exec rm -f '{}' ';'" || true - scp *.dmg "${REPOS_SERVER}:'${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'" || true + scp *.dmg* "${REPOS_SERVER}:'${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'" || true # Generate checksums. 0</dev/null ssh -- "${REPOS_SERVER}" "sudo -u x2go-admin -- x2go-signtarballs '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}'" -- 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 7bfcfe0c64e97068e2a2c47e2baf9850f5f6c516 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Apr 7 12:37:52 2017 +0200 bin/build-osx-package: call correct script to generate checksums via sudo . --- bin/build-osx-package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-osx-package b/bin/build-osx-package index b19f63f..4cb6a03 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -312,7 +312,7 @@ upload_packages() { scp *.dmg* "${REPOS_SERVER}:'${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}/'" || true # Generate checksums. - 0</dev/null ssh -- "${REPOS_SERVER}" "sudo -u x2go-admin -- x2go-signtarballs '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}'" + 0</dev/null ssh -- "${REPOS_SERVER}" "sudo -u x2go-admin -- /home/x2go-admin/bin/x2go-signtarballs '${OSX_REPOS_BASE}/${PROJECT}/${COMPONENT}/${upstream_version}'" done done return 0 -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git