How do you add chmod +x permission to an AWS Elastic Beanstalk platform hook?

前端 未结 2 557
孤独总比滥情好
孤独总比滥情好 2021-01-13 11:45

Context

I am using Elastic Beanstalk to deploy a very simple test application. I have several packages I want to install using apt. I have included a

2条回答
  •  孤独总比滥情好
    2021-01-13 12:22

    Make sure to make your file executable in git

    chmod +x path/to/file
    git update-index --chmod=+x path/to/file
    

    reference from How to add chmod permissions to file in GIT?

提交回复
热议问题