Fixed incorrect boolean check in _updatePublisher.sh
Corrected call to java to allow for running on systems with case-sensitive file-systems.
This commit is contained in:
@@ -16,12 +16,12 @@ echo "$txoption"
|
||||
|
||||
publisher=$input_cache_path/$publisher_jar
|
||||
if test -f "$publisher"; then
|
||||
JAVA -jar $publisher -ig ig.ini $txoption $*
|
||||
java -jar $publisher -ig ig.ini $txoption $*
|
||||
|
||||
else
|
||||
publisher=../$publisher_jar
|
||||
if test -f "$publisher"; then
|
||||
JAVA -jar $publisher -ig ig.ini $txoption $*
|
||||
java -jar $publisher -ig ig.ini $txoption $*
|
||||
else
|
||||
echo IG Publisher NOT FOUND in input-cache or parent folder. Please run _updatePublisher. Aborting...
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user