Change-Id: I443b4613a50fbdd9e766949c60963ed7a58f2257
Reviewed-on: https://go-review.googlesource.com/c/dl/+/417135
Auto-Submit: Gopher Robot <gobot@golang.org>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Gopher Robot <gobot@golang.org>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
Run-TryBot: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
Gopher Robot 2022-07-12 15:22:49 +00:00
Родитель ca0cf14d3e
Коммит 8cf1758620
1 изменённых файлов: 24 добавлений и 0 удалений

24
go1.17.12/main.go Normal file
Просмотреть файл

@ -0,0 +1,24 @@
// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The go1.17.12 command runs the go command from Go 1.17.12.
//
// To install, run:
//
// $ go install golang.org/dl/go1.17.12@latest
// $ go1.17.12 download
//
// And then use the go1.17.12 command as if it were your normal go
// command.
//
// See the release notes at https://go.dev/doc/devel/release#go1.17.minor.
//
// File bugs at https://go.dev/issue/new.
package main
import "golang.org/dl/internal/version"
func main() {
version.Run("go1.17.12")
}