FIX: Always return success after help.

Usually (i.e. when a pager is available), the help() output is piped through the pager, and then the return code will be the one of the pager. So the exit 1 at the end of help() doesn't make much sense, and should be abolished for consistency.
This commit is contained in:
Ingo Karkat
2012-04-27 13:40:52 +02:00
parent 97035d3425
commit f2b9734047

View File

@@ -156,7 +156,6 @@ help()
EndVerboseHelp EndVerboseHelp
actionsHelp actionsHelp
addonHelp addonHelp
exit 1
} }
actionsHelp() actionsHelp()