diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-14 02:57:15 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-14 02:57:15 +0100 |
commit | d211dce28658c1766342abe75e91c5e060dc245b (patch) | |
tree | 7dfeb9e3b36ac95bb1e4c0fc8ee68659fd822e6f | |
parent | 8c44156c6d602e6fa607284328d268db0af65345 (diff) | |
download | jenkins.debian.net-d211dce28658c1766342abe75e91c5e060dc245b.tar.xz |
reproducible debian/archlinux/rpm: improve output
-rwxr-xr-x | bin/reproducible_build.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_build_archlinux_pkg.sh | 2 | ||||
-rwxr-xr-x | bin/reproducible_build_rpm.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index f316a5c5..7377335e 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -650,7 +650,7 @@ remote_build() { handle_remote_error "when rsyncing remote build #$BUILDNR results from $NODE" fi fi - ls -R $TMPDIR + ls -lR $TMPDIR ssh -p $PORT $NODE "rm -r $TMPDIR" set -e if [ $BUILDNR -eq 1 ] ; then diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index 0bd25502..9bce19cd 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -201,7 +201,7 @@ remote_build() { handle_remote_error "when rsyncing remote build #$BUILDNR results from $NODE" fi fi - ls -R $TMPDIR + ls -lR $TMPDIR ssh -p $PORT $FQDN "rm -r $TMPDIR" set -e } diff --git a/bin/reproducible_build_rpm.sh b/bin/reproducible_build_rpm.sh index 34e11e25..b61efdf1 100755 --- a/bin/reproducible_build_rpm.sh +++ b/bin/reproducible_build_rpm.sh @@ -160,7 +160,7 @@ remote_build() { handle_remote_error "when rsyncing remote build #$BUILDNR results from $NODE" fi fi - ls -R $TMPDIR + ls -lR $TMPDIR ssh -p $PORT $FQDN "rm -r $TMPDIR" set -e } |