1
0
mirror of synced 2025-12-19 18:10:59 -05:00

fix: postCreate.sh doesn't execute without providing execute permission to the script first (#33166)

Co-authored-by: hubwriter <hubwriter@github.com>
This commit is contained in:
Saikat Das
2024-07-22 15:51:48 +05:30
committed by GitHub
parent 953d588cf7
commit f46213f68b

View File

@@ -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"
}
```