vscode: quote path

`mkdir` had an unquoted variable, leading to errors when using paths with spaces (ie: `/Users/me/Library/Application Support/…`)
This commit is contained in:
Louis Orleans 2025-08-05 03:15:38 -07:00 committed by Austin Horstman
parent a0b1afdb5e
commit 9b59dcee0b

View file

@ -373,7 +373,7 @@ in
file_write="$file_write$([ "$file_write" != "" ] && echo "...")$profile"
done
mkdir -p $(dirname "$file")
mkdir -p "$(dirname "$file")"
echo "{}" > "$file"
fi