From 9defeb8f11f97fd88c8cd4dddc079e77d14259d9 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 8 Sep 2012 16:09:31 -0400 Subject: [PATCH] tossing zip's output, and tar's for the heck of it (although it had none). --- scripts/archival/unpack.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/archival/unpack.sh b/scripts/archival/unpack.sh index dfa3d1c3..5641df96 100644 --- a/scripts/archival/unpack.sh +++ b/scripts/archival/unpack.sh @@ -55,16 +55,17 @@ if [[ $unpack_file =~ .*\.tar$ \ || $unpack_file =~ .*\.tar\.gz$ \ || $unpack_file =~ .*\.tar\.bz2$ \ || $unpack_file =~ .*\.tgz$ ]]; then - tar -xf $unpack_file + tar -xf $unpack_file &>/dev/null elif [[ $unpack_file =~ .*\.zip$ ]]; then - unzip $unpack_file + unzip $unpack_file &>/dev/null fi save_err=$? +popd &>/dev/null + if [ $save_err -ne 0 ]; then echo "There was a failure reported while unpacking: $unpack_file" echo "into the directory: $unpack_dir" - popd &>/dev/null exit 1 else echo "Unpacked file $(basename $unpack_file) into folder: $unpack_dir" -- 2.34.1