This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 6226463 sbuild-deb-package: Make sure that a certain Git branch that we want to build from is obtained from origin. new 234ce9d bin/sbuild-deb-package: also fetch the other upstream/* branches and ignore such failures. new 6a00270 bin/sbuild-deb-package: add more quotes to the git checkout code. 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/sbuild-deb-package | 10 ++++++---- 1 file changed, 6 insertions(+), 4 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 6a002703335c27d29ab1401ae1522be8ab6f154b Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 30 23:40:57 2018 +0200 bin/sbuild-deb-package: add more quotes to the git checkout code. --- bin/sbuild-deb-package | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index 42d0552..60df9fe 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -177,9 +177,9 @@ prepare_workspace() { git checkout --force "${CHECKOUT}" || git checkout --force -b "${CHECKOUT}" git fetch origin "${CHECKOUT}" git reset --hard "origin/${CHECKOUT}" - git fetch origin upstream:upstream || true + git fetch origin 'upstream:upstream' || true git fetch origin 'upstream/*:upstream/*' || true - git fetch origin pristine-tar:pristine-tar || true + git fetch origin 'pristine-tar:pristine-tar' || true # and again, get the ${CHECKOUT} refspec in pure state git reset --hard git clean -df @@ -193,9 +193,9 @@ prepare_workspace() { cd "${PROJECT}" git fetch origin "${CHECKOUT}" git checkout --force "${CHECKOUT}" || git checkout --force -b "${CHECKOUT}" - git fetch origin upstream:upstream || true + git fetch origin 'upstream:upstream' || true git fetch origin 'upstream/*:upstream/*' || true - git fetch origin pristine-tar:pristine-tar || true + git fetch origin 'pristine-tar:pristine-tar' || true git clean -df } || { echo "Unable to switch to project directory \"$(dirname "${PROJECT_DIR}")\". Does it exist? Check the permissions." >&2 -- 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 234ce9d916f0892bacdd0503cbc2f732ed1d0d88 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 30 23:39:43 2018 +0200 bin/sbuild-deb-package: also fetch the other upstream/* branches and ignore such failures. --- bin/sbuild-deb-package | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index f976e8a..42d0552 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -178,6 +178,7 @@ prepare_workspace() { git fetch origin "${CHECKOUT}" git reset --hard "origin/${CHECKOUT}" git fetch origin upstream:upstream || true + git fetch origin 'upstream/*:upstream/*' || true git fetch origin pristine-tar:pristine-tar || true # and again, get the ${CHECKOUT} refspec in pure state git reset --hard @@ -193,6 +194,7 @@ prepare_workspace() { git fetch origin "${CHECKOUT}" git checkout --force "${CHECKOUT}" || git checkout --force -b "${CHECKOUT}" git fetch origin upstream:upstream || true + git fetch origin 'upstream/*:upstream/*' || true git fetch origin pristine-tar:pristine-tar || true git clean -df } || { -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/buildscripts.git