Skip to content

Commit

Permalink
🐛 fix: use exec in forwarder scripts (#1664)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeljw committed Jan 8, 2025
1 parent a8eec07 commit 44e075a
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 44e075a

Please sign in to comment.