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:
parent
a0b1afdb5e
commit
9b59dcee0b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue