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