1
0
mirror of https://github.com/golang/go synced 2024-11-15 09:20:58 -07:00

[release-branch.go1] cmd/api: handle empty API file, ignore -next in release

««« backport 8e7ad2db0833
cmd/api: handle empty API file, ignore -next in release

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6298063

»»»
This commit is contained in:
Russ Cox 2012-06-13 16:24:56 -04:00
parent e819613d08
commit 1ddbfeedae

View File

@ -28,6 +28,7 @@ import (
"os/exec"
"path"
"path/filepath"
"runtime"
"sort"
"strconv"
"strings"
@ -99,6 +100,13 @@ func setContexts() {
func main() {
flag.Parse()
if !strings.Contains(runtime.Version(), "weekly") {
if *nextFile != "" {
fmt.Printf("Go version is %q, ignoring -next %s\n", runtime.Version(), *nextFile)
*nextFile = ""
}
}
if *forceCtx != "" {
setContexts()
}
@ -235,7 +243,11 @@ func fileFeatures(filename string) []string {
if err != nil {
log.Fatalf("Error reading file %s: %v", filename, err)
}
return strings.Split(strings.TrimSpace(string(bs)), "\n")
text := strings.TrimSpace(string(bs))
if text == "" {
return nil
}
return strings.Split(text, "\n")
}
// pkgSymbol represents a symbol in a package