This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository buildscripts. from 0b2027f bin/build-rpm-package: make get_extra_repository() edit OTHERMIRROR or MOCK_CHROOT_CONFIG directly. Do not call it in a subshell. It needs to modify global variables. new 7356e64 bin/build-rpm-package: add successful return statement in function missing them. 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-rpm-package | 9 +++++++++ 1 file changed, 9 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 7356e64d41939b1f2244a0df4819a5c614754eab Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Apr 1 11:39:39 2015 +0200 bin/build-rpm-package: add successful return statement in function missing them. --- bin/build-rpm-package | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/build-rpm-package b/bin/build-rpm-package index a5bc52b..f822e05 100755 --- a/bin/build-rpm-package +++ b/bin/build-rpm-package @@ -118,6 +118,8 @@ function make_boolean () { esac printf "${OPTION}" + + return 0 } set_vars() { @@ -240,7 +242,10 @@ repeat_str () { # INPUT COUNT ret="${ret}$(printf "${INPUT}")" i=$(($i + 1)) done + printf "${ret}" + + return 0 } # Creates a custom mock config file given a base config (taken from @@ -393,6 +398,8 @@ create_mock_config () { # MOCK_BASE CUSTOM_REPO COMPONENT TARGET # Reset input field separator to original value. IFS="${OLDIFS}" + + return 0 } # Fetches extras repositories, if requested. @@ -464,6 +471,8 @@ get_extra_repository () { exit -1 ;; esac + + return 0 } prepare_workspace() { -- Alioth's /srv/git/code.x2go.org/buildscripts.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/buildscripts.git