This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 0e8f4fd bin/build-rpm-package: add a missing quote in the *SUSE upload section. new ca8f96e bin/createsusetagsrepo: set and save failglob value before globbing wildly. 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/createsusetagsrepo | 3 +++ 1 file changed, 3 insertions(+) -- 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 ca8f96e5ec4e0f298ca0e8efc45bd2ddbd6fa629 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Nov 24 09:18:39 2016 +0100 bin/createsusetagsrepo: set and save failglob value before globbing wildly. --- bin/createsusetagsrepo | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index f3efd3e..451a7d1 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -43,9 +43,12 @@ cleanup_repo () { # Create new ones. typeset file="" + typeset failglob="$(shopt -p failglob)" + shopt -s failglob for file in */*.rpm; do ln -sfv -- "${file}" "$(basename "${file}")" done + eval "${failglob}" popd done -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git