Skip to content

Commit

Permalink
Fix satart script (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv authored Aug 7, 2024
1 parent 1083cda commit f1b2742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/start-iguana.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
if [ -z "$IGUANA_JVM" ]
then
java -jar iguana-${project.version}.jar "$1"
java -jar iguana.jar "$1"
else
java "$IGUANA_JVM" -jar iguana-${project.version}.jar "$1"
java "$IGUANA_JVM" -jar iguana.jar "$1"
fi

0 comments on commit f1b2742

Please sign in to comment.