From e3543cd0841c20f1b5ffa5c4543d97f557a71cef Mon Sep 17 00:00:00 2001 From: Lloyd McKenzie Date: Thu, 19 Dec 2019 08:33:24 -0700 Subject: [PATCH] Corrected updatePublisher script labels --- _updatePublisher.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_updatePublisher.sh b/_updatePublisher.sh index a4471c8..a771120 100755 --- a/_updatePublisher.sh +++ b/_updatePublisher.sh @@ -13,7 +13,7 @@ publisher="$input_cache_dir$publisher_jar" if test -f "$publisher"; then echo "IG Publisher FOUND in input-cache" jarlocation="$publisher" - jarlocationname=Input Cache + jarlocationname="Input Cache" upgrade=true else publisher="../$publisher_jar" @@ -21,12 +21,12 @@ else if test -f "$publisher"; then echo "IG Publisher FOUND in parent folder" jarlocation="$publisher" - jarlocationname=Input Cache + jarlocationname="Parent Folder" upgrade=true else echo IG Publisher NOT FOUND in input-cache or parent folder... jarlocation="$input_cache_dir$publisher_jar" - jarlocationname=Input Cache + jarlocationname="Input Cache" upgrade=false fi fi @@ -45,4 +45,4 @@ if [[ "$response" =~ ^([yY])$ ]] then curl $dlurl -o "$jarlocation" --create-dirs else echo cancel... -fi \ No newline at end of file +fi