Conversation
The postCreateCommand.sh is already executable in git as checked in here, and so `chmod` isn't needed. But even if it were, just running the script with `bash` is probably nicer.
|
Thanks for PR and suggestions! chmod In my first tests I had this problem that the .sh script was not executable - and I realized that permissions are also stored in git: https://stackoverflow.com/questions/40978921/how-to-add-chmod-permissions-to-file-in-git As far as I remember I needed to run once locally and commit this via git. Therefore I would leave it here as it is when others follow this tutorial and might have not set their permissions correctly (like I did). bash I found this in the documentation
What's the advantage running it via |
|
I was just saying that if you didn't have confidence that the executable bit was set, you could just do |
Ah 💡 I wasn't aware of that! |
The postCreateCommand.sh is already executable in git as checked in here, and so
chmodisn't needed. But even if it were, just running the script withbashis probably nicer.