From 79868d88e89f878199cb05705d6169c5d6a25476 Mon Sep 17 00:00:00 2001 From: AbdBarho Date: Sun, 2 Oct 2022 09:25:31 +0200 Subject: [PATCH] Fix chmod on non-existing dir (#113) closes #112 --- services/download/download.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/download/download.sh b/services/download/download.sh index f979fa0..18806a4 100755 --- a/services/download/download.sh +++ b/services/download/download.sh @@ -20,4 +20,5 @@ echo "Checking SHAs..." parallel --will-cite -a /docker/checksums.sha256 "echo -n {} | sha256sum -c" # fix potential permissions -chmod -R 777 /data /output +# TODO: need something better than this: +# chmod -R 777 /data /output