diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2015-12-10 15:10:42 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-10 15:21:30 +0100 |
commit | 067ef0669532b0aae183fd209c821170ae507d95 (patch) | |
tree | 5635b3a251f1eb3c36b37e86317ffb9fca423cb1 | |
parent | 15e14ee36757eabbd22286a67fdda19d3e6fd70f (diff) | |
download | jenkins.debian.net-067ef0669532b0aae183fd209c821170ae507d95.tar.xz |
reproducible *.sh fix whitespaces
-rwxr-xr-x | bin/common-functions.sh | 4 | ||||
-rwxr-xr-x | bin/reproducible_coreboot.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_freebsd.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_netbsd.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_openwrt.sh | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh index d828ce93..1f2715e7 100755 --- a/bin/common-functions.sh +++ b/bin/common-functions.sh @@ -3,7 +3,7 @@ # Copyright 2014-2015 Holger Levsen <holger@layer-acht.org> # released under the GPLv=2 -common_cleanup(){ +common_cleanup() { echo "$(date) - $0 stopped running as $TTT, which will now be removed." rm -f $TTT } @@ -101,7 +101,7 @@ else fi } -publish_changes_to_userContent(){ +publish_changes_to_userContent() { echo "Extracting contents from .deb files..." CHANGES=$1 CHANNEL=$2 diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 6616cfe4..e6bab08a 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -25,7 +25,7 @@ create_results_dirs() { mkdir -p $BASE/coreboot/dbd } -save_coreboot_results(){ +save_coreboot_results() { RUN=$1 cd coreboot-builds for i in * ; do diff --git a/bin/reproducible_freebsd.sh b/bin/reproducible_freebsd.sh index 1d5de6be..70524d04 100755 --- a/bin/reproducible_freebsd.sh +++ b/bin/reproducible_freebsd.sh @@ -23,7 +23,7 @@ create_results_dirs() { mkdir -p $BASE/freebsd/dbd } -save_freebsd_results(){ +save_freebsd_results() { local RUN=$1 echo "=============================================================================" echo "$(date -u) - Saving FreeBSD (branch $FREEBSD_TARGET at ${FREEBSD_VERSION[$FREEBSD_TARGET]}) build results for $RUN run." diff --git a/bin/reproducible_netbsd.sh b/bin/reproducible_netbsd.sh index e96641fa..4b9c2583 100755 --- a/bin/reproducible_netbsd.sh +++ b/bin/reproducible_netbsd.sh @@ -25,7 +25,7 @@ create_results_dirs() { mkdir -p $BASE/netbsd/dbd } -save_netbsd_results(){ +save_netbsd_results() { local RUN=$1 local MACHINE=$2 mkdir -p $TMPDIR/$RUN/${MACHINE} diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 76c7f9ee..2141ebd2 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -31,7 +31,7 @@ create_results_dirs() { mkdir -p $BASE/openwrt/dbd } -save_openwrt_results(){ +save_openwrt_results() { RUN=$1 cd bin for i in * ; do |