Reputation: 13
I am novice with Jenkins, I am trying to create a Job. For build I use "execute shell command" and the code is as below: cd /Users/username/javaFiles javac hello.java java -cp . hello
however, when Build the job, i got this failure message :
Thanks in advance for help !
Upvotes: 0
Views: 2045
Reputation: 1
Ensure you have given permission..run below cmd:
chmod 777 Users/
Upvotes: 0