This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from e46d3c7 bin/{build-{deb,osx,rpm}-package,sbuild-deb-package,build-nsis-package.sh: allow checking out rebased branch without having to manually modify the repository beforehand. new 8836ef3 bin/{build-{deb,osx,rpm}-package,sbuild-deb-package,build-all-deb-packages}: print out detected PREFIX when things go wrong. 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/build-all-deb-packages | 2 +- bin/build-deb-package | 2 +- bin/build-osx-package | 2 +- bin/build-rpm-package | 2 +- bin/sbuild-deb-package | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/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 8836ef30ac159fc5b0f4f56ad39b977d350962b3 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 28 20:01:17 2018 +0100 bin/{build-{deb,osx,rpm}-package,sbuild-deb-package,build-all-deb-packages}: print out detected PREFIX when things go wrong. --- bin/build-all-deb-packages | 2 +- bin/build-deb-package | 2 +- bin/build-osx-package | 2 +- bin/build-rpm-package | 2 +- bin/sbuild-deb-package | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/build-all-deb-packages b/bin/build-all-deb-packages index 08d851a..bce8ad7 100755 --- a/bin/build-all-deb-packages +++ b/bin/build-all-deb-packages @@ -25,7 +25,7 @@ APP_PACKAGES_NIGHTLY= APP_PACKAGES_MAIN= PREFIX=$(echo `basename $0` | cut -d"-" -f1) -test -f ~/.buildscripts/$PREFIX.conf && . ~/.buildscripts/$PREFIX.conf || { echo "$0 has no valid context prefix..."; exit 1; } +test -f ~/.buildscripts/$PREFIX.conf && . ~/.buildscripts/$PREFIX.conf || { echo "$0 has no valid context prefix (detected: ${PREFIX}) ..."; exit 1; } set -ex diff --git a/bin/build-deb-package b/bin/build-deb-package index cee7443..984a188 100755 --- a/bin/build-deb-package +++ b/bin/build-deb-package @@ -46,7 +46,7 @@ test -z "${1}" && { PREFIX="$(cut -d"-" -f1 <<< "$(basename "${0}")")" test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . "${HOME}/.buildscripts/${PREFIX}.conf" || { exec >&2 - echo "${0} has no valid context prefix..." + echo "${0} has no valid context prefix (detected: ${PREFIX}) ..." exit 1; } diff --git a/bin/build-osx-package b/bin/build-osx-package index 52a1be1..80e4264 100755 --- a/bin/build-osx-package +++ b/bin/build-osx-package @@ -45,7 +45,7 @@ test -z "${1}" && { PREFIX="$(cut -d"-" -f1 <<< "$(basename "${0}")")" test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . "${HOME}/.buildscripts/${PREFIX}.conf" || { exec >&2 - echo "${0} has no valid context prefix..." + echo "${0} has no valid context prefix (detected: ${PREFIX}) ..." exit 1; } diff --git a/bin/build-rpm-package b/bin/build-rpm-package index ea0cfd7..17c987e 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -58,7 +58,7 @@ test -z "${1}" && { PREFIX="$(cut -d"-" -f1 <<< "$(basename "${0}")")" test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . "${HOME}/.buildscripts/${PREFIX}.conf" || { exec >&2 - echo "${0} has no valid context prefix..." + echo "${0} has no valid context prefix (detected: ${PREFIX}) ..." exit 1 } diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index 952ffe7..aaab203 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -47,7 +47,7 @@ test -z "${1}" && { PREFIX="$(cut -d"-" -f1 <<< "$(basename "${0}")")" test -f "${HOME}/.buildscripts/${PREFIX}.conf" && . "${HOME}/.buildscripts/${PREFIX}.conf" || { exec >&2 - echo "${0} has no valid context prefix..." + echo "${0} has no valid context prefix (detected: ${PREFIX}) ..." exit 1; } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git