From c73eaaa20d03955c885c7ee03c7cb7cfe3618f1a Mon Sep 17 00:00:00 2001 From: Nikolay Epifanov <217547+n-epifanov@users.noreply.github.com> Date: Fri, 20 Feb 2026 02:28:14 +0400 Subject: [PATCH] Allow passing custom command-line options --- priv/templates/extended_bin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/priv/templates/extended_bin b/priv/templates/extended_bin index c31af58de..8abf774ac 100755 --- a/priv/templates/extended_bin +++ b/priv/templates/extended_bin @@ -881,7 +881,7 @@ case "$1" in -boot "$BOOTFILE" -mode "$CODE_LOADING_MODE" \ -boot_var SYSTEM_LIB_DIR "$SYSTEM_LIB_DIR" \ -config "$RELX_CONFIG_PATH" \ - -args_file "$VMARGS_PATH" -- "$@" + -args_file "$VMARGS_PATH" "$@" echo "Root: $ROOTDIR" # Log the startup @@ -896,7 +896,7 @@ case "$1" in -boot "$BOOTFILE" -mode "$CODE_LOADING_MODE" \ -boot_var SYSTEM_LIB_DIR "$SYSTEM_LIB_DIR" \ -config "$RELX_CONFIG_PATH" \ - -args_file "$VMARGS_PATH" -- "$@" + -args_file "$VMARGS_PATH" "$@" # exec will replace the current image and nothing else gets # executed from this point on, this explains the absence # of the pre start hook