|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

This is really needed!
Its also needed if you want to print enviroment-variables that contains passwords and so on...
I think the best way would be like the "Execute Shell" is doing.
Default it runs with "#Unable to render embedded object: File (/bin/sh -ex" Which makes it print all commands its running, if you want to overwrite you simply put "#) not found./bin/sh" at the top line.
So your "Exec Command" would like like this:
#!/bin/sh
if [ ! -f $bkpSh ]
then
echo "[ERROR] backup.sh does not exist!"
exit 1
fi