Skip to content

Commit

Permalink
Fixes issue with postCreateCommand in devcontainer.json
Browse files Browse the repository at this point in the history
Gives executable permission to 'setup_dev_env.sh' file before running
the script.
  • Loading branch information
cr2007 committed Oct 15, 2024
1 parent a9bcba5 commit 153aede
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 @@ -22,6 +22,6 @@
// "source=${localEnv:HOME}${localEnv:USERPROFILE}/.gitconfig,target=~/.gitconfig,type=bind,consistency=cached"
// ]

"postCreateCommand": "./.devcontainer/setup_dev_env.sh",
"postCreateCommand": "chmod +x ./.devcontainer/setup_dev_env.sh && ./.devcontainer/setup_dev_env.sh",
"postStartCommand": "chmod +x create_tag.sh"
}

0 comments on commit 153aede

Please sign in to comment.