Reputation: 331
I have a shell script (file.sh) with echo message. Created self hosted agent in a Linux container with the help of Microsoft documentation.
Created a pipeline job with "Bash" task to run the shell script (file.sh).
End up with no outcome, though build successful. no error, no outcome on console. PFB error screen. please suggest.
Note: I am able to run same shell script from inside (docker exec -ti bash) the container.
Upvotes: 0
Views: 639
Reputation: 331
Fixed this by making shell script executable (chmod +x file.sh) before commit and push it to git repo.
Upvotes: 0
Reputation: 137
Try to enable the System.Debug variable to true. It should show from the right top
Upvotes: 1