mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
vscode: quote path
`mkdir` had an unquoted variable, leading to errors when using paths with spaces (ie: `/Users/me/Library/Application Support/…`)
(cherry picked from commit 9b59dcee0b)
This commit is contained in:
parent
fc3add429f
commit
7e96494bf4
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,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