From 0b8d9492ab7e9711701576c5eadd0da325fb6152 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 16 Oct 2022 19:14:55 +0200 Subject: [PATCH] Lint --- unpackerr/rootfs/etc/cont-init.d/99-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unpackerr/rootfs/etc/cont-init.d/99-config.sh b/unpackerr/rootfs/etc/cont-init.d/99-config.sh index b56634407..8a9ea63ef 100644 --- a/unpackerr/rootfs/etc/cont-init.d/99-config.sh +++ b/unpackerr/rootfs/etc/cont-init.d/99-config.sh @@ -15,7 +15,7 @@ if bashio::config.has_value "watch_path"; then # Make path mkdir -p "$(bashio::config 'watch_path')" # Set permission - chown -R $PUID:$PGID "$(bashio::config 'watch_path')" + chown -R "$PUID":"$PGID" "$(bashio::config 'watch_path')" fi # Enable extraction folder @@ -27,5 +27,5 @@ if bashio::config.has_value "extraction_path"; then # Make path mkdir -p "$(bashio::config 'extraction_path')" # Set permission - chown -R $PUID:$PGID "$(bashio::config 'extraction_path')" + chown -R "$PUID":"$PGID" "$(bashio::config 'extraction_path')" fi