gradlew: Permission Denied

后端 未结 14 2246
闹比i
闹比i 2020-12-02 03:45

I am attempting to run gradlew from my command line, but am constantly facing the following error.

Brendas-MacBook-Pro:appx_android brendalogy$ ./gradlew com         


        
14条回答
  •  [愿得一人]
    2020-12-02 04:26

    With this step set permission to gradlew

    steps {
        echo 'Compile project'
        sh "chmod +x gradlew"
        sh "./gradlew clean build --no-daemon"
    }
    

提交回复
热议问题