Skip to content

Commit

Permalink
Fix postCreateCommand in devcontainer.json (davidfowl#57)
Browse files Browse the repository at this point in the history
The original value `init.sh` was not executing.
You can see the Creation Log in your codespaces.
  • Loading branch information
sadedil authored Dec 18, 2022
1 parent 1ed0767 commit ee69f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"extensions": [
"ms-dotnettools.csharp"
],
"postCreateCommand": "init.sh",
"postCreateCommand": "chmod +x .devcontainer/init.sh && .devcontainer/init.sh",
"forwardPorts": [
5000,
5001
Expand Down

0 comments on commit ee69f36

Please sign in to comment.