build: Builds from "release" branch are not branch builds

This commit is contained in:
Jakob Borg 2017-06-30 14:02:16 +02:00
parent 8d13e01342
commit e735a3a25c
1 changed files with 3 additions and 2 deletions

View File

@ -801,8 +801,9 @@ func getBranchSuffix() string {
} }
branch = parts[len(parts)-1] branch = parts[len(parts)-1]
if branch == "master" { switch branch {
// master builds are the default. case "master", "release":
// these are not special
return "" return ""
} }