fixed missing variable

This commit is contained in:
Snogard 2025-03-05 15:00:57 +01:00
parent 33b231a37d
commit 0857c434d0

View File

@ -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