diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-11 15:33:26 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-11 15:33:26 +0100 |
commit | d64d0a0f8ad0ab2bc41cbf2bbbaf127f74736b38 (patch) | |
tree | 2dd6b34d2cf944c93e0a4329196b4f23d9e06f0f | |
parent | 88e7c6c70d0ab5b6d6388dd89f7cf979c759ce12 (diff) | |
download | jenkins.debian.net-d64d0a0f8ad0ab2bc41cbf2bbbaf127f74736b38.tar.xz |
reproducible archlinux: improve output
-rwxr-xr-x | bin/reproducible_build_archlinux_pkg.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index 18426ac9..89ad2241 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -109,9 +109,10 @@ choose_package() { first_build() { echo "=============================================================================" - echo "Building ${SRCPACKAGE} from repository '$REPOSITORY' for Arch Linux on $(hostname -f) now." - echo "Date: $(date)" - echo "Date UTC: $(date -u)" + echo "Building for Arch Linux on $(hostname -f) now." + echo "Source package: ${SRCPACKAGE}" + echo "Repository: $REPOSITORY" + echo "Date: $(date -u)" echo "=============================================================================" set -x local SESSION="archlinux-$SRCPACKAGE-$(basename $TMPDIR)" @@ -136,9 +137,10 @@ first_build() { second_build() { echo "=============================================================================" - echo "Re-Building ${SRCPACKAGE} from repository '$REPOSITORY' for Arch Linux on $(hostname -f) now." - echo "Date: $(date)" - echo "Date UTC: $(date -u)" + echo "Re-Building for Arch Linux on $(hostname -f) now." + echo "Source package: ${SRCPACKAGE}" + echo "Repository: $REPOSITORY" + echo "Date: $(date -u)" echo "=============================================================================" set -x local SESSION="archlinux-$SRCPACKAGE-$(basename $TMPDIR)" |