This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 55ae2d0 bin/build-{{deb,rpm}-package,nsis-package.sh}: use dirname instead of basename to get the shell script's directory. new 6b0304a bin/build-{{deb,rpm}-package,nsis-package.sh}: create even less predictable temp directories. 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-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 6b0304a86275c166414cc4208c79cb97cad35a47 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun May 10 06:44:53 2015 +0200 bin/build-{{deb,rpm}-package,nsis-package.sh}: create even less predictable temp directories. --- bin/build-deb-package | 2 +- bin/build-nsis-package.sh | 2 +- bin/build-rpm-package | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/build-deb-package b/bin/build-deb-package index 8ac4cb6..701875c 100755 --- a/bin/build-deb-package +++ b/bin/build-deb-package @@ -238,7 +238,7 @@ build_packages() { # the wrong distribution here... test -z "${CODENAMES}" || grep "${CODENAMES}" <<< "${line}" || break - TEMP_DIR="$(mktemp -d --tmpdir=${TEMP_BASE})" + TEMP_DIR="$(mktemp -d --tmpdir="${TEMP_BASE}" "tmp.$(repeat_str "X" "24")")" temp_cleanup+=("${TEMP_DIR}") mkdir -p -- "${TEMP_DIR}/${PROJECT}" chmod 2770 -Rf -- "${TEMP_DIR}" diff --git a/bin/build-nsis-package.sh b/bin/build-nsis-package.sh index c7d6af6..934f9ca 100755 --- a/bin/build-nsis-package.sh +++ b/bin/build-nsis-package.sh @@ -200,7 +200,7 @@ clear_pkgdist() { } build_packages() { - TEMP_DIR="$(mktemp -d --tmpdir="${TEMP_BASE}")" + TEMP_DIR="$(mktemp -d --tmpdir="${TEMP_BASE}" "tmp.$(repeat_str "X" "24")")" mkdir -p "${TEMP_DIR}/${PROJECT}" chmod 2770 "${TEMP_DIR}" -Rf diff --git a/bin/build-rpm-package b/bin/build-rpm-package index 6bd8716..0fdea9a 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -582,7 +582,7 @@ build_packages() { mkdir -p -- "${PKGDIST}/${l_DIST}/${l_CODENAME}/${l_ARCH}/rpmbuild/SOURCES" # tar upstream sources from our Git clone - TEMP_DIR="$(mktemp -d --tmpdir="${TEMP_BASE}")" + TEMP_DIR="$(mktemp -d --tmpdir="${TEMP_BASE}" "tmp.$(repeat_str "X" "24")")" temp_cleanup+=("${TEMP_DIR}") mkdir -p -- "${TEMP_DIR}/${PROJECT}" chmod -Rf -- 2770 "${TEMP_DIR}" -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git