mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-11 03:11:50 +00:00
It makes more sense. Multiple lines of aptly commands can now be called 'aptly tasks' which could potentially be automated, in the future?
16 lines
247 B
Go
16 lines
247 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/smira/commander"
|
|
)
|
|
|
|
func makeCmdTask() *commander.Command {
|
|
return &commander.Command{
|
|
UsageLine: "task",
|
|
Short: "manage aptly tasks",
|
|
Subcommands: []*commander.Command{
|
|
makeCmdTaskRun(),
|
|
},
|
|
}
|
|
}
|