Updated comment explaining scriptHelp exit code

This commit is contained in:
Asif Bacchus 2018-09-19 17:11:48 -06:00
parent a00e6ee364
commit 87ab180b06

View File

@ -18,7 +18,7 @@ stamp="[`date +%Y-%m-%d` `date +%H:%M:%S`]"
### scriptHelp -- display usage information for this script ### scriptHelp -- display usage information for this script
function scriptHelp { function scriptHelp {
echo "In the future, I will be something helpful!" echo "In the future, I will be something helpful!"
# exit with code 98 -- there is no use logging this # exit with code 1 -- there is no use logging this
exit 1 exit 1
} }