mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
temporarily disables drone logs from cli
This commit is contained in:
parent
e172de592f
commit
c046caf56e
1 changed files with 7 additions and 8 deletions
|
@ -3,7 +3,6 @@ package main
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/cncd/pipeline/pipeline/rpc"
|
"github.com/cncd/pipeline/pipeline/rpc"
|
||||||
|
@ -11,13 +10,13 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var buildLogsCmd = cli.Command{
|
var buildLogsCmd = cli.Command{
|
||||||
Name: "logs",
|
Name: "logs",
|
||||||
Usage: "show build logs",
|
Usage: "show build logs",
|
||||||
Action: func(c *cli.Context) {
|
Action: buildLogsDisabled,
|
||||||
if err := buildLogs(c); err != nil {
|
}
|
||||||
log.Fatalln(err)
|
|
||||||
}
|
func buildLogsDisabled(c *cli.Context) error {
|
||||||
},
|
return fmt.Errorf("Command temporarily disabled. See https://github.com/drone/drone/issues/2005")
|
||||||
}
|
}
|
||||||
|
|
||||||
func buildLogs(c *cli.Context) error {
|
func buildLogs(c *cli.Context) error {
|
||||||
|
|
Loading…
Reference in a new issue