From 5fd891d19be3d78c13fde36cf2765998ca952089 Mon Sep 17 00:00:00 2001 From: awalsh128 Date: Tue, 12 Oct 2021 17:39:17 -0700 Subject: [PATCH] Make directory as a condition of run. --- run.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/run.sh b/run.sh index ecc7212..c8f4e94 100755 --- a/run.sh +++ b/run.sh @@ -24,11 +24,6 @@ packages="${@:3}" ############################################################################## validate_args() { echo -n "* Validating action arguments... "; - if [ ! -d "$cache_dir" ]; then - echo "aborted." - echo "Cache directory '$cache_dir' does not exist." >&2 - exit 1 - fi if [ "$packages" == "" ]; then echo "aborted." echo "* Packages argument cannot be empty." >&2