This is error message I got
./gradlew clean assembleRelease /Users/bhanukaisuru/.jenkins/workspace/OrelGo@tmp/durable-b74adbad/script.sh: line 1:
You do not need to specify the Jenkins workspace with the commands sh
and bat
if you want to execute a command on the root level of it.
sh 'mkdir test'
would create a folder in
for example.
If gradlew
is located on the root of the Jenkins workspace the following should be sufficent:
sh "gradlew clean assembleRelease"
otherwise a full path works as well.