From 21c4a5574ed0836cff7496554c2efe8efb61aced Mon Sep 17 00:00:00 2001 From: prplwtf Date: Mon, 17 Jun 2024 13:51:23 +0200 Subject: [PATCH] chore `core`: make $FOLDER variable comply with shellcheck --- blueprint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprint.sh b/blueprint.sh index f33de91..af312a0 100644 --- a/blueprint.sh +++ b/blueprint.sh @@ -6,7 +6,7 @@ # This should allow Blueprint to run in Docker. Please note that changing the $FOLDER variable after running # the Blueprint installation script will not change anything in any files besides blueprint.sh. - FOLDER="$(realpath $(dirname $0))" + FOLDER=$(realpath "$(dirname "$0")") # This stores the webserver ownership user which Blueprint uses when applying webserver permissions. OWNERSHIP="www-data:www-data" #;