From 6a874d740a26f21d0ddc24117adf1763e740dc47 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 24 Oct 2021 17:48:29 +0200 Subject: [PATCH] Update run.sh --- cloudcommander/rootfs/run.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cloudcommander/rootfs/run.sh b/cloudcommander/rootfs/run.sh index 49c5b7239..e4d4041ca 100644 --- a/cloudcommander/rootfs/run.sh +++ b/cloudcommander/rootfs/run.sh @@ -4,11 +4,11 @@ # SCRIPTS # ########### -for SCRIPTS in "00-banner.sh" "92-local_mounts.sh" "92-smb_mounts.sh" - chown $(id -u):$(id -g) /$SCRIPTS - chmod a+x /$SCRIPTS - sed -i 's|/usr/bin/with-contenv bashio|/usr/bin/env bashio|g' /$SCRIPTS - /./$SCRIPTS & true # Prevents script crash on failure +for SCRIPTS in "/00-banner.sh" "/92-local_mounts.sh" "/92-smb_mounts.sh" + chown $(id -u):$(id -g) $SCRIPTS + chmod a+x $SCRIPTS + sed -i 's|/usr/bin/with-contenv bashio|/usr/bin/env bashio|g' $SCRIPTS + /.$SCRIPTS & true # Prevents script crash on failure done #################