From 14348e09fd9719f20457519aec1ce5f9de47be1c 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..38082e3 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}" "$@" +exxec "${LAUNCHER_BIN}" "$@"