Skip to content

Commit 7acf9e9

Browse files
committed
cmd/go: fix build
This was missed in c3b45d0dc5c0 R=golang-dev CC=golang-dev https://golang.org/cl/12379043
1 parent bbf1430 commit 7acf9e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cmd/go/bootstrap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ func httpsOrHTTP(importPath string) (string, io.ReadCloser, error) {
2525
return "", nil, errHTTP
2626
}
2727

28-
func parseMetaGoImports(r io.Reader) (imports []metaImport) {
28+
func parseMetaGoImports(r io.Reader) ([]metaImport, error) {
2929
panic("unreachable")
3030
}

0 commit comments

Comments
 (0)