Skip to content

Commit 7c1c1be

Browse files
authored
Add quotes to git safe.directory in .devcontainer to fix parsing error (#167)
Currently the git command fails because the * is not parsed correctly in command line without the quote. This resolves this issue.
1 parent cc7375b commit 7c1c1be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"image": "ghcr.io/tianocore/containers/fedora-37-dev:latest",
3-
"postCreateCommand": "git config --global --add safe.directory * && pip install --upgrade -r pip-requirements.txt",
3+
"postCreateCommand": "git config --global --add safe.directory '*' && pip install --upgrade -r pip-requirements.txt",
44
"customizations": {
55
"vscode": {
66
"extensions": [
@@ -9,4 +9,4 @@
99
]
1010
}
1111
}
12-
}
12+
}

0 commit comments

Comments
 (0)