Skip to content

Commit

Permalink
Fix: Allow postCreateCommand to fail silently in VS Code on Windows (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
seanburns326a authored Oct 16, 2023
1 parent 19ffb89 commit 8145269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/devcontainer.stub
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
},
"remoteUser": "sail",
"postCreateCommand": "chown -R 1000:1000 /var/www/html"
"postCreateCommand": "chown -R 1000:1000 /var/www/html 2>/dev/null || true"
// "forwardPorts": [],
// "runServices": [],
// "shutdownAction": "none",
Expand Down

0 comments on commit 8145269

Please sign in to comment.