mirror of
https://github.com/drone/drone-cli.git
synced 2025-02-22 01:21:17 +01:00
23 lines
386 B
Go
23 lines
386 B
Go
package build
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the build command set.
|
|
var Command = cli.Command{
|
|
Name: "build",
|
|
Usage: "manage builds",
|
|
Subcommands: []cli.Command{
|
|
buildListCmd,
|
|
buildLastCmd,
|
|
buildInfoCmd,
|
|
buildCreateCmd,
|
|
buildStopCmd,
|
|
buildStartCmd,
|
|
buildApproveCmd,
|
|
buildDeclineCmd,
|
|
buildPromoteCmd,
|
|
buildRollbackCmd,
|
|
buildQueueCmd,
|
|
},
|
|
}
|