diff --git a/build.go b/build.go index 54e82915b..6bbfd202c 100644 --- a/build.go +++ b/build.go @@ -801,8 +801,9 @@ func getBranchSuffix() string { } branch = parts[len(parts)-1] - if branch == "master" { - // master builds are the default. + switch branch { + case "master", "release": + // these are not special return "" }