This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 8d6dd87 bin/createsusetagsrepo: removing directories without -r is a bad idea. new a1cad3d bin/createsusetagsrepo: ignore read's exit status, we know it will be non-zero. new 9e48287 bin/createsusetagsrepo: set IFS to empty for the read call. 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/createsusetagsrepo | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) -- 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 a1cad3d53e1ee463dd12759748dbcb2d5880a2c6 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Oct 30 02:48:08 2016 +0100 bin/createsusetagsrepo: ignore read's exit status, we know it will be non-zero. --- bin/createsusetagsrepo | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index 34b6309..dcf0a98 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -38,7 +38,7 @@ create_metadata () { printf 'media\n' > "media.1/directory.yast" typeset tmp_str="" - read -r -d '' tmp_str <<EOF + { read -r -d '' tmp_str <<EOF PRODUCT X2Go ${distro} ${component} VERSION 1.0-0 LABEL X2Go ${component} Repository for ${distro} @@ -63,6 +63,9 @@ DEFAULTBASE i586 DESCRDIR descr DATADIR . EOF + # We need to ignore read's exit status, as encountering EOF will + # lead to a non-zero one. + } || : printf '%s\n' "${tmp_str}" > "content" } -- 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 9e482870790a1c92da8c9b031507a23a93e2a39c Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Oct 30 02:48:34 2016 +0100 bin/createsusetagsrepo: set IFS to empty for the read call. --- bin/createsusetagsrepo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/createsusetagsrepo b/bin/createsusetagsrepo index dcf0a98..7a108c1 100755 --- a/bin/createsusetagsrepo +++ b/bin/createsusetagsrepo @@ -38,7 +38,7 @@ create_metadata () { printf 'media\n' > "media.1/directory.yast" typeset tmp_str="" - { read -r -d '' tmp_str <<EOF + { IFS='' read -r -d '' tmp_str <<EOF PRODUCT X2Go ${distro} ${component} VERSION 1.0-0 LABEL X2Go ${component} Repository for ${distro} -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git