Skip to content

Commit 5c6aa2c

Browse files
committed
version: add go1.9beta2
Change-Id: I7c3d889abfa14e205cb931379c248f1aad8bcd9f Reviewed-on: https://go-review.googlesource.com/46718 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent abffef5 commit 5c6aa2c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

version/go1.9beta2/main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright 2017 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
// The go1.9beta2 command runs the go command from go1.9beta2.
6+
//
7+
// To install, run:
8+
//
9+
// $ go get golang.org/x/build/version/go1.9beta2
10+
// $ go1.9beta2 download
11+
//
12+
// And then use the go1.9beta2 command as if it were your normal go
13+
// command.
14+
//
15+
// See the release notes at https://beta.golang.org/doc/go1.9
16+
//
17+
// File bugs at https://golang.org/issues/new
18+
package main
19+
20+
import "golang.org/x/build/version"
21+
22+
func main() {
23+
version.Run("go1.9beta2")
24+
}

0 commit comments

Comments
 (0)