File relx-4.4.0-git.patch of Package relx
diff --git a/.github/workflows/shelltest.yml b/.github/workflows/shelltest.yml
index a4bf1dd..60b5a8e 100644
--- a/.github/workflows/shelltest.yml
+++ b/.github/workflows/shelltest.yml
@@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- - uses: gleam-lang/setup-erlang@v1.0.0
+ - uses: gleam-lang/setup-erlang@v1.1.2
with:
otp-version: ${{ matrix.otp_version }}
diff --git a/priv/templates/bin b/priv/templates/bin
index 395d4bb..63fa31a 100644
--- a/priv/templates/bin
+++ b/priv/templates/bin
@@ -79,4 +79,6 @@ set -- "$ERL_OPTS"
set -- "$@" -boot_var ERTS_LIB_DIR "$ERTS_LIB_DIR" -boot "$REL_DIR/$BOOTFILE" "$ARGS"
# Boot the release
-exec "$BINDIR/erlexec" "$@"
+# don't quote $@ to keep the arguments split
+# shellcheck disable=SC2068
+exec "$BINDIR/erlexec" $@
diff --git a/priv/templates/extended_bin b/priv/templates/extended_bin
index a94f4fd..7c4acdc 100644
--- a/priv/templates/extended_bin
+++ b/priv/templates/extended_bin
@@ -19,7 +19,7 @@ fi
# OSX does not support readlink '-f' flag, work
# around that
-# shellcheck disable=SC2039
+# shellcheck disable=SC2039,SC3000-SC4000
case $OSTYPE in
darwin*)
SCRIPT=$(readlink "$0" || true)