diff --git a/cmd/cmd.go b/cmd/cmd.go index 0246d493..bcccff9e 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -57,6 +57,7 @@ package environment to new version.`, makeCmdGraph(), makeCmdMirror(), makeCmdRepo(), + makeCmdScript(), makeCmdServe(), makeCmdSnapshot(), makeCmdPublish(), diff --git a/cmd/script.go b/cmd/script.go index a4a6058c..c3e6e513 100644 --- a/cmd/script.go +++ b/cmd/script.go @@ -7,7 +7,7 @@ import ( func makeCmdScript() *commander.Command { return &commander.Command{ UsageLine: "script", - Short: "runs aptly scripts", + Short: "run aptly scripts", Subcommands: []*commander.Command{ makeCmdScriptRun(), },