mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 05:41:12 +00:00
5d8e60808d
Co-authored-by: Anbraten <anton@ju60.de>
19 lines
389 B
Go
19 lines
389 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 {
|
|
// TODO: add logs command
|
|
return fmt.Errorf("Command temporarily disabled. See https://github.com/woodpecker-ci/woodpecker/issues/383")
|
|
}
|