Aptly script has now become aptly task

It makes more sense. Multiple lines of aptly commands can now be called
'aptly tasks' which could potentially be automated, in the future?
This commit is contained in:
Simon Aquino
2014-08-16 14:14:56 +00:00
parent 18e3ed5d64
commit 005cee572e
3 changed files with 11 additions and 11 deletions
+15
View File
@@ -0,0 +1,15 @@
package cmd
import (
"github.com/smira/commander"
)
func makeCmdTask() *commander.Command {
return &commander.Command{
UsageLine: "task",
Short: "manage aptly tasks",
Subcommands: []*commander.Command{
makeCmdTaskRun(),
},
}
}