Added new script command

This commit is contained in:
Simon Aquino
2014-08-16 10:17:44 +00:00
parent 047270540a
commit b6c82f073f
+15
View File
@@ -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(),
},
}
}