Skip to content

Commit

Permalink
fix JVM argument list
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoayyed committed Dec 20, 2023
1 parent 2c814c8 commit 86d013c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/resources/overlay/puppeteer/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ fi
echo -n "NPM version: " && npm --version
echo -n "Node version: " && node --version

echo "Launching CAS at $casWebApplicationFile with arguments $RUN_ARGS and options $CAS_ARGS"
java "$RUN_ARGS" -jar "$casWebApplicationFile" "$CAS_ARGS" &
echo "Launching CAS at $casWebApplicationFile with options $CAS_ARGS"
java -jar "$casWebApplicationFile" "$CAS_ARGS" &
pid=$!
echo "Waiting for CAS under process id ${pid}"
sleep 45
Expand Down

0 comments on commit 86d013c

Please sign in to comment.