1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

revert unwanted commented code

This commit is contained in:
Carlos Alexandro Becker 2017-03-22 21:06:56 -03:00
parent b3fa5cfc19
commit f4024df0e6
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -15,6 +15,7 @@ import (
"github.com/goreleaser/goreleaser/pipeline/fpm"
"github.com/goreleaser/goreleaser/pipeline/git"
"github.com/goreleaser/goreleaser/pipeline/release"
"github.com/goreleaser/goreleaser/pipeline/source"
"github.com/urfave/cli"
)
@ -68,9 +69,9 @@ func pipes(buildOnly bool) []pipeline.Pipe {
if !buildOnly {
pipes = append(
pipes,
git.Pipe{}, // get current tag info
env.Pipe{}, // load and validate environment variables
// source.Pipe{}, // validate current git state
git.Pipe{}, // get current tag info
env.Pipe{}, // load and validate environment variables
source.Pipe{}, // validate current git state
)
}
pipes = append(