fixed unrar line
authorChris Koeritz <fred@gruntose.com>
Fri, 30 Sep 2016 14:25:55 +0000 (10:25 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 30 Sep 2016 14:25:55 +0000 (10:25 -0400)
scripts/archival/unpack.sh

index 5a882cfc258191579cd7c48ff05870fdae001002..e420f4e4caa63af9c9cfe0c635454d762fec0f50 100644 (file)
@@ -82,7 +82,7 @@ elif [[ "$archive_file" =~ .*\.7z$ ]]; then
   7z x "$archive_file" &>/dev/null
   save_err=$?
 elif [[ "$archive_file" =~ .*\.rar$ ]]; then
-  rar x "$archive_file" &>/dev/null
+  unrar x "$archive_file" &>/dev/null
   save_err=$?
 fi