From c7641f8edc3305c8ca4ccadbfe1379acd24711a3 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Mon, 6 Mar 2017 18:10:32 -0300 Subject: [PATCH] skip the git log/diff as well --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 28a363dc3..a6a317c75 100644 --- a/main.go +++ b/main.go @@ -66,12 +66,12 @@ func main() { func pipes(buildOnly bool) []pipeline.Pipe { var pipes = []pipeline.Pipe{ defaults.Pipe{}, // load default configs - git.Pipe{}, // get current tag info repos.Pipe{}, // split repos into owner/name pairs } if !buildOnly { pipes = append( pipes, + git.Pipe{}, // get current tag info env.Pipe{}, // load and validate environment variables source.Pipe{}, // validate current git state )