From 1b3b0731e68b565065530783b8214db7e61130e3 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Fri, 20 Mar 2020 11:28:16 -0400 Subject: [PATCH] bugfix, more typo's.. --- root/etc/cont-init.d/31-path-setup.bash | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/root/etc/cont-init.d/31-path-setup.bash b/root/etc/cont-init.d/31-path-setup.bash index bb0f84c..7d27117 100644 --- a/root/etc/cont-init.d/31-path-setup.bash +++ b/root/etc/cont-init.d/31-path-setup.bash @@ -19,15 +19,15 @@ if [ ! -d "/config/scripts/logs" ]; then fi # Create downloads incomplete directory -if [ ! -d "/stroage/downloads/sabnzbd/incomplete" ]; then - mkdir -p "/stroage/downloads/sabnzbd/incomplete" - chmod 0777 "/stroage/downloads/sabnzbd/incomplete" +if [ ! -d "/storage/downloads/sabnzbd/incomplete" ]; then + mkdir -p "/storage/downloads/sabnzbd/incomplete" + chmod 0777 "/storage/downloads/sabnzbd/incomplete" fi # Create downloads complete directory -if [ ! -d "/stroage//downloads/sabnzbd/complete" ]; then - mkdir -p "/stroage//downloads/sabnzbd/complete" - chmod 0777 "/stroage//downloads/sabnzbd/complete" +if [ ! -d "/storage/downloads/sabnzbd/complete" ]; then + mkdir -p "/storage/downloads/sabnzbd/complete" + chmod 0777 "/storage/downloads/sabnzbd/complete" fi exit 0