Browse Source

Decreasing verbosity of fw_untar

Hopefully this will overcome Travis' 4MB log limit
Hamilton Turner 11 years ago
parent
commit
a099414603
1 changed files with 2 additions and 1 deletions
  1. 2 1
      toolset/setup/linux/bash_functions.sh

+ 2 - 1
toolset/setup/linux/bash_functions.sh

@@ -12,7 +12,8 @@ fw_get () {
 }
 }
 
 
 fw_untar() {
 fw_untar() {
-  tar xvf "$@"
+  echo "Running 'tar xf $@'...please wait"
+  tar xf "$@"
 }
 }
 
 
 fw_unzip() {
 fw_unzip() {