From b6c82f073f772455f71c86697a0a2ab172c8636c Mon Sep 17 00:00:00 2001 From: Simon Aquino Date: Sat, 16 Aug 2014 10:17:44 +0000 Subject: [PATCH] Added new script command --- cmd/script.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cmd/script.go diff --git a/cmd/script.go b/cmd/script.go new file mode 100644 index 00000000..a4a6058c --- /dev/null +++ b/cmd/script.go @@ -0,0 +1,15 @@ +package cmd + +import ( + "github.com/smira/commander" +) + +func makeCmdScript() *commander.Command { + return &commander.Command{ + UsageLine: "script", + Short: "runs aptly scripts", + Subcommands: []*commander.Command{ + makeCmdScriptRun(), + }, + } +}