From 0857c434d0b97cfe96100865e7a66a297ba9542b Mon Sep 17 00:00:00 2001 From: Snogard Date: Wed, 5 Mar 2025 15:00:57 +0100 Subject: [PATCH] fixed missing variable --- src/libs/bash/functions-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/bash/functions-common.sh b/src/libs/bash/functions-common.sh index 7485548..981a83d 100644 --- a/src/libs/bash/functions-common.sh +++ b/src/libs/bash/functions-common.sh @@ -24,7 +24,7 @@ function symlink_folder() function ensure_folder(){ local dst=$1 - if [ ! -d "${}" ]; then + if [ ! -d "${dst}" ]; then echo "Creating folder at path $(dst)" mkdir -p "${dst}" if [ ! $? -eq 0 ]; then