This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 72f682a bin/build-rpm-package: fix override inclusion. new ecb7c14 bin/build-{rpm,deb}-package: fix detection of top commit on a branch (or tag) new 87a87fe bin/build-nsis-package.sh: fix detection of top commit on a branch (or tag). The 2 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-deb-package | 2 +- bin/build-nsis-package.sh | 2 +- bin/build-rpm-package | 2 +- 3 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 ecb7c14ecaf18fec1e5cf13590f6f97dbfcf19db Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Apr 27 14:30:00 2015 +0200 bin/build-{rpm,deb}-package: fix detection of top commit on a branch (or tag) --- bin/build-deb-package | 2 +- bin/build-rpm-package | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/build-deb-package b/bin/build-deb-package index 30e0609..4dd07e8 100755 --- a/bin/build-deb-package +++ b/bin/build-deb-package @@ -139,7 +139,7 @@ prepare_workspace() { git clean -df fi - GIT_OBJECT_ID="$(git show-ref -s heads/master)" + GIT_OBJECT_ID="$(git rev-parse --verify HEAD)" cd "${PROJECT_DIR}" # by default we build for all current debian versions diff --git a/bin/build-rpm-package b/bin/build-rpm-package index adb0291..1af3503 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -530,7 +530,7 @@ prepare_workspace() { git clean -df fi - GIT_OBJECT_ID="$(git show-ref -s heads/master)" + GIT_OBJECT_ID="$(git rev-parse --verify HEAD)" cd "${PROJECT_DIR}" if [ "x${ARGV2_CODENAME}" != "x" ]; then -- 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 87a87fee78957f5490ed3850b34aab375ea60419 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Apr 30 19:27:36 2015 +0200 bin/build-nsis-package.sh: fix detection of top commit on a branch (or tag). --- bin/build-nsis-package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build-nsis-package.sh b/bin/build-nsis-package.sh index a5b023e..cb94a2f 100755 --- a/bin/build-nsis-package.sh +++ b/bin/build-nsis-package.sh @@ -124,7 +124,7 @@ prepare_workspace() { git clean -df fi - GIT_OBJECT_ID=`git show-ref -s heads/master` + GIT_OBJECT_ID="$(git rev-parse --verify HEAD)" cd "$PROJECT_DIR" # by default we build for all current debian versions -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git