Fix s6-overlay format error #29

Merged
MrMeeb merged 3 commits from fix/s6-exec-format-error into master 2024-06-15 15:55:19 +00:00
2 changed files with 12 additions and 2 deletions
Showing only changes of commit 02f9dbc024 - Show all commits

View File

@ -1,4 +1,9 @@
#!/command/with-contenv bash
# shellcheck shell=bash
echo "$e" > /run/s6-linux-init-container-results/exitcode
if [ $ONE_SHOT == "false" ]; then
# Export exit code if not a ONE_SHOT
echo "$e" > /run/s6-linux-init-container-results/exitcode
fi

View File

@ -1,4 +1,9 @@
#!/command/with-contenv bash
# shellcheck shell=bash
echo "$e" > /run/s6-linux-init-container-results/exitcode
if [ $ONE_SHOT == "false" ]; then
# Export exit code if not a ONE_SHOT
echo "$e" > /run/s6-linux-init-container-results/exitcode
fi