Permission denied for build.sh file

后端 未结 4 1623
星月不相逢
星月不相逢 2021-01-30 10:31
$ ./build.sh --quiet verify

/home/travis/build.sh: line 59: ./build.sh: Permission denied. 

The command \"./build.sh --quiet verify\" exited with 126. 
4条回答
  •  无人共我
    2021-01-30 10:43

    Looks like you need to check in the file build.sh with execution permissions. Please try the following from your own machine:

    git update-index --add --chmod=+x build.sh
    git commit -m 'Make build.sh executable'
    git push
    

提交回复
热议问题