From 6aa909647f49790db097b591a663b40e1ae4b4e6 Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 18 Feb 2022 13:18:47 +0100 Subject: [PATCH] lint --- jellyfin/rootfs/etc/cont-init.d/20-folders.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jellyfin/rootfs/etc/cont-init.d/20-folders.sh b/jellyfin/rootfs/etc/cont-init.d/20-folders.sh index 930f02920..064f6f881 100644 --- a/jellyfin/rootfs/etc/cont-init.d/20-folders.sh +++ b/jellyfin/rootfs/etc/cont-init.d/20-folders.sh @@ -10,19 +10,19 @@ if [ ! -d /jellyfin ]; then fi if [ ! -d "$LOCATION"/tv ]; then - echo "Creating "$LOCATION"/tv" + echo "Creating $LOCATION/tv" mkdir -p "$LOCATION"/tv chown -R abc:abc "$LOCATION"/tv fi if [ ! -d "$LOCATION"/movies ]; then - echo "Creating "$LOCATION"/movies" + echo "Creating $LOCATION/movies" mkdir -p "$LOCATION"/movies chown -R abc:abc "$LOCATION"/movies fi if [ ! -d "$LOCATION" ]; then - echo "Creating "$LOCATION"" + echo "Creating $LOCATION" mkdir -p "$LOCATION" chown -R abc:abc "$LOCATION" fi