mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
11 lines
111 B
Go
11 lines
111 B
Go
// +build appengine
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
return true
|
|
}
|