summaryrefslogtreecommitdiff
path: root/TestRelease.job
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
commitee9af84a9da8b105fd1bb98351c2a4a0b736ae56 (patch)
tree4a2d6317f3f91bc6166d05f688d78019588e1c3e /TestRelease.job
parente80632e990eceb3cdd1e097653b79501470b98ae (diff)
scripts/TestRelease.job: Make it less verbose.
To avoid filling the Jenkins console. Change-Id: Ie2108e656244cce7acbc8e284910ad9f04af4000
Diffstat (limited to 'TestRelease.job')
-rwxr-xr-xTestRelease.job4
1 files changed, 2 insertions, 2 deletions
diff --git a/TestRelease.job b/TestRelease.job
index 128aa0bc..ea153bde 100755
--- a/TestRelease.job
+++ b/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