aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
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