Commit eb138afe authored by Matthew Brett's avatar Matthew Brett
Browse files

Quienten zip output to get output_directory

Zip output corrupts the output for returning the output directory.
parent e7a02460
...@@ -139,7 +139,7 @@ function untar { ...@@ -139,7 +139,7 @@ function untar {
tar) tar -xf $in_fname ;; tar) tar -xf $in_fname ;;
gz|tgz) tar -zxf $in_fname ;; gz|tgz) tar -zxf $in_fname ;;
bz2) tar -jxf $in_fname ;; bz2) tar -jxf $in_fname ;;
zip) unzip $in_fname ;; zip) unzip -qq $in_fname ;;
xz) unxz -c $in_fname | tar -xf ;; xz) unxz -c $in_fname | tar -xf ;;
*) echo Did not recognize extension $extension; exit 1 ;; *) echo Did not recognize extension $extension; exit 1 ;;
esac esac
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment