Skip to content

Commit

Permalink
Merge pull request #1665 from gaeljw/gh1664
Browse files Browse the repository at this point in the history
🐛 fix: use exec in forwarder scripts (#1664)
  • Loading branch information
dwickern authored Jan 10, 2025
2 parents bc546d5 + 44e075a commit 29461e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ SCRIPT=$(realpath "$0")
SCRIPTPATH=$(dirname "$SCRIPT")

# execute the main start script
$SCRIPTPATH/${{startScript}} -main ${{qualifiedClassName}} "$@"
exec $SCRIPTPATH/${{startScript}} -main ${{qualifiedClassName}} "$@"
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ SCRIPT=$(realpath "$0")
SCRIPTPATH=$(dirname "$SCRIPT")

# execute the main start script
$SCRIPTPATH/${{startScript}} -main ${{qualifiedClassName}} "$@"
exec $SCRIPTPATH/${{startScript}} -main ${{qualifiedClassName}} "$@"

0 comments on commit 29461e8

Please sign in to comment.