From d7a2d2ed799455fca38993a8c0254c7517c1e7ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Wa=C5=9B?= Date: Sat, 30 Nov 2024 17:12:22 +0100 Subject: [PATCH] Pass signals to the launcher command from the wrapper script Without this, if the launcher is used in a Docker container, the container will never terminate gracefully. --- src/main/resources/launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/launcher b/src/main/resources/launcher index 7083ed4..5c3a27b 100755 --- a/src/main/resources/launcher +++ b/src/main/resources/launcher @@ -40,4 +40,4 @@ if [ ! -f "${LAUNCHER_BIN}" ]; then exit 1 fi -"${LAUNCHER_BIN}" "$@" +exec "${LAUNCHER_BIN}" "$@"