mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-05-24 17:51:49 +02:00
Allow posix shell
This commit is contained in:
@@ -32,8 +32,14 @@ for SCRIPTS in /etc/cont-init.d/*; do
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Start the script
|
# Start the script
|
||||||
# shellcheck source=/dev/null
|
if command -v "source" &>/dev/null; then
|
||||||
source "$SCRIPTS" || echo -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?"
|
# Use source to share env variables
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
source "$SCRIPTS" || echo -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?"
|
||||||
|
else
|
||||||
|
# Support for posix only shell
|
||||||
|
/."$SCRIPTS" || echo -e "\033[0;31mError\033[0m : $SCRIPTS exiting $?"
|
||||||
|
fi
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
rm "$SCRIPTS"
|
rm "$SCRIPTS"
|
||||||
|
|||||||
Reference in New Issue
Block a user