mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 20:51:41 +00:00
19 lines
350 B
Go
19 lines
350 B
Go
|
package build
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
var buildLogsCmd = cli.Command{
|
||
|
Name: "logs",
|
||
|
Usage: "show build logs",
|
||
|
ArgsUsage: "<repo/name> [build] [job]",
|
||
|
Action: buildLogs,
|
||
|
}
|
||
|
|
||
|
func buildLogs(c *cli.Context) error {
|
||
|
return fmt.Errorf("Command temporarily disabled. See https://github.com/drone/drone/issues/2005")
|
||
|
}
|