From a2ef2a54be31c18d59fb4f82f58b6fcd19fc0312 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Tue, 8 Sep 2020 06:38:57 -0400 Subject: [PATCH] Update 31-path-setup.bash --- root/etc/cont-init.d/31-path-setup.bash | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/root/etc/cont-init.d/31-path-setup.bash b/root/etc/cont-init.d/31-path-setup.bash index 7d27117..06514ce 100644 --- a/root/etc/cont-init.d/31-path-setup.bash +++ b/root/etc/cont-init.d/31-path-setup.bash @@ -18,16 +18,4 @@ if [ ! -d "/config/scripts/logs" ]; then chmod 0777 "/config/scripts/logs" fi -# Create downloads incomplete directory -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 "/storage/downloads/sabnzbd/complete" ]; then - mkdir -p "/storage/downloads/sabnzbd/complete" - chmod 0777 "/storage/downloads/sabnzbd/complete" -fi - -exit 0 +exit $?