diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-12 23:30:50 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-12 23:33:10 +0200 |
commit | 397311f3278a008e2e0b54dc444172d944a63258 (patch) | |
tree | 8983e9c54c3eb786ae23f1d46cdfbd95815ae3fb | |
parent | 95e53b50f5130b7b9dba679ae0be2864df634e40 (diff) | |
download | jenkins.debian.net-397311f3278a008e2e0b54dc444172d944a63258.tar.xz |
reproducible_openwrt|lede: remove rsync verbose from /download
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index 171c5d75..bb107a18 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -317,8 +317,8 @@ build_two_times() { echo "== node2" ssh $GENERIC_NODE2 reproducible_$TYPE node node_debug $TMPDIR - rsync -av $GENERIC_NODE1:$TMPDIR/download/ $TMPDIR/download/ - rsync -av $TMPDIR/download/ $GENERIC_NODE2:$TMPDIR/download/ + rsync -a $GENERIC_NODE1:$TMPDIR/download/ $TMPDIR/download/ + rsync -a $TMPDIR/download/ $GENERIC_NODE2:$TMPDIR/download/ ## first run RUN=b1 |