From 54f4d69da6449a69bffeefc6e9ccd7bc5ffd6145 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Fri, 4 Nov 2022 10:35:58 +0900 Subject: [PATCH] Remove wrong exit in user create script --- bin/user_create.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/user_create.sh b/bin/user_create.sh index 8f8443e..d6e4559 100755 --- a/bin/user_create.sh +++ b/bin/user_create.sh @@ -77,7 +77,6 @@ if [ ! -f "${root_folder}${input_file}" ]; then echo "Missing ${root_folder}${input_file}"; exit; fi; -exit; # make sure my own folder is owned by root and 600 (except for testing) if [ $(stat -c %a .) != "600" ]; then echo "!!!! RECOMMENDED TO HAVE BASE FOLDER SET TO '600' AND USER 'root' !!!!"