Skip to content

Commit e274b9e

Browse files
committed
dl: add go1.23.7
Change-Id: Ia42ce8b4df4e261531368172d2985d26248f0aff Reviewed-on: https://go-review.googlesource.com/c/dl/+/654318 Auto-Submit: Junyang Shao <[email protected]> Reviewed-by: Junyang Shao <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Pratt <[email protected]> Auto-Submit: Gopher Robot <[email protected]>
1 parent af211eb commit e274b9e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

go1.23.7/main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright 2025 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.23.7 command runs the go command from Go 1.23.7.
6+
//
7+
// To install, run:
8+
//
9+
// $ go install golang.org/dl/go1.23.7@latest
10+
// $ go1.23.7 download
11+
//
12+
// And then use the go1.23.7 command as if it were your normal go
13+
// command.
14+
//
15+
// See the release notes at https://go.dev/doc/devel/release#go1.23.7.
16+
//
17+
// File bugs at https://go.dev/issue/new.
18+
package main
19+
20+
import "golang.org/dl/internal/version"
21+
22+
func main() {
23+
version.Run("go1.23.7")
24+
}

0 commit comments

Comments
 (0)