aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2016-08-25 13:15:01 +0200
committerRyan Arnold <ryan.arnold@linaro.org>2016-08-30 22:02:18 +0000
commit4962c3c6fbf280ad9f0edd5cdffa8a9402815e2d (patch)
tree76d49785b2d98a60a5157820cdd67a9b79bb1b0b /scripts
parent8d2eeccea7e682df2c77ddf63274a6833b3b52cb (diff)
scripts/TestRelease.job: Make it less verbose.
To avoid filling the Jenkins console. Change-Id: Ie2108e656244cce7acbc8e284910ad9f04af4000
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/TestRelease.job4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/TestRelease.job b/scripts/TestRelease.job
index 128aa0bc..ea153bde 100755
--- a/scripts/TestRelease.job
+++ b/scripts/TestRelease.job
@@ -48,7 +48,7 @@ if test x${protocol} = x"file"; then
else
# Download the toolchain binary tarball
if test ! -e ${testdir}/${file}; then
- wget ${tarball} --directory=${testdir}
+ wget ${tarball} --directory=${testdir} --progress=dot:giga
if test $? -gt 0; then
echo "ERROR: ${tarball} doesn't exist on remote machine!"
exit 1
@@ -58,7 +58,7 @@ fi
# Extract the tarball
dir="`echo ${file} | sed -e 's:.tar.xz::'`"
-tar Jxvf ${tarball_name} --directory=${testdir}
+tar Jxf ${tarball_name} --directory=${testdir}
if test $? -gt 0; then
echo "ERROR: ${tarball} is corrupted!"
exit 1