Skip to content

Commit

Permalink
NIT
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Jun 9, 2023
1 parent 2a955ad commit 0cb2f1b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/scripts/run/run-its-native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ checkResults() {

"$SCALA_CLI" --power package --server=false .github/scripts/run --native-image -o "$RUN_APP"

trap "jps -mlv" EXIT
function exitHook() {
echo jps -mlv
jps -mlv
}
trap exitHook EXIT

# Seems native-image sends its output to stdout, which borks the command JSON output
# So we run the show command a first time, so that native-image can run, before actually
Expand Down

0 comments on commit 0cb2f1b

Please sign in to comment.