From df06dc356ba3716b386f35a2e27881279a19122a Mon Sep 17 00:00:00 2001 From: Simon Aquino Date: Sat, 16 Aug 2014 10:19:58 +0000 Subject: [PATCH] Added script cmd in cmd.go --- cmd/cmd.go | 1 + cmd/script.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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(), },