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(), + }, + } +}