Fix correct usage function

This fixes the push function as it currently gives the help for `run`
not `push`.

Signed-off-by: Dan Finneran <daniel.finneran@gmail.com>
This commit is contained in:
thebsdbox 2017-05-30 15:56:01 +01:00
parent 6f26ad65cc
commit 9e7214a1f8

View File

@ -23,7 +23,7 @@ func pushUsage() {
func push(args []string) {
if len(args) < 1 {
runUsage()
pushUsage()
os.Exit(1)
}