diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-11-23 18:24:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 18:24:28 +0800 |
commit | e05d35e6e04f1378c18861016f96b39b35cef4f2 (patch) | |
tree | 78102f23cfbba026810c2fff717f2187e5c5ca34 /build/ci.go | |
parent | f7da5b29f0917575850849c7fb20bcc5376ab772 (diff) | |
parent | e1e2df656a46c428bfb487e5ec3d126905ff003e (diff) | |
download | dexon-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.gz dexon-e05d35e6e04f1378c18861016f96b39b35cef4f2.tar.zst dexon-e05d35e6e04f1378c18861016f96b39b35cef4f2.zip |
Merge pull request #3317 from fjl/build-unstable-simplify
build, internal/build: simplify unstable build checks
Diffstat (limited to 'build/ci.go')
-rw-r--r-- | build/ci.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go index dbf188350..59f4acc02 100644 --- a/build/ci.go +++ b/build/ci.go @@ -459,7 +459,7 @@ func makeWorkdir(wdflag string) string { } func isUnstableBuild(env build.Environment) bool { - if env.Branch != "master" && env.Tag != "" { + if env.Tag != "" { return false } return true |