diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-09 16:21:15 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-18 18:03:01 +0200 |
commit | e56d58595af1d2814278f1a48fd1ce8d37c47754 (patch) | |
tree | 2c9d2cb758d9376e08e38538d1a103c27a2dede3 /bin | |
parent | b94fd3a99dd3148519031bf1924ff8fca8123fa0 (diff) | |
download | jenkins.debian.net-e56d58595af1d2814278f1a48fd1ce8d37c47754.tar.xz |
reproducible: build: refactor: another local variable
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 569a318b..d4b18782 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -261,11 +261,11 @@ choose_package () { init() { if [ $SAVE_ARTIFACTS -eq 1 ] ; then - AANOUNCE=" Artifacts will be preserved." + local AANOUNCE="Artifacts will be preserved." fi create_results_dirs echo "=============================================================================" - echo "Trying to reproducibly build ${SRCPACKAGE} in ${SUITE} on ${ARCH} now.$AANOUNCE" + echo "Trying to reproducibly build ${SRCPACKAGE} in ${SUITE} on ${ARCH} now. $AANOUNCE" echo "=============================================================================" # mark build attempt sqlite3 -init $INIT ${PACKAGES_DB} "REPLACE INTO schedule (package_id, date_scheduled, date_build_started) VALUES ('$SRCPKGID', '$SCHEDULED_DATE', '$DATE');" |