Skip to content

Commit

Permalink
fix: postCreate.sh doesn't execute without providing execute permissi…
Browse files Browse the repository at this point in the history
…on to the script first (#33166)

Co-authored-by: hubwriter <hubwriter@github.com>
  • Loading branch information
saikatdas0790 and hubwriter committed Jul 22, 2024
1 parent 953d588 commit f46213f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ If you want to preserve files outside the `/workspaces` directory over a rebuild
```json
{
"image": "mcr.microsoft.com/devcontainers/base:alpine",
"postCreateCommand": ".devcontainer/postCreate.sh"
"postCreateCommand": "chmod +x .devcontainer/postCreate.sh && .devcontainer/postCreate.sh"
}
```

Expand Down

0 comments on commit f46213f

Please sign in to comment.