blob: 5f13d2861ebe78af58c899e22cd7c2eb7a817c5f [file] [log] [blame]
Filippo Valsorda35ca1c52020-09-01 19:41:08 +02001// Copyright 2020 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.14.8 command runs the go command from Go 1.14.8.
6//
7// To install, run:
8//
Dmitri Shuralyov294a5db2021-08-30 15:33:58 -04009// $ go install golang.org/dl/go1.14.8@latest
Filippo Valsorda35ca1c52020-09-01 19:41:08 +020010// $ go1.14.8 download
11//
12// And then use the go1.14.8 command as if it were your normal go
13// command.
14//
15// See the release notes at https://golang.org/doc/devel/release.html#go1.14.minor
16//
17// File bugs at https://golang.org/issues/new
18package main
19
20import "golang.org/dl/internal/version"
21
22func main() {
23 version.Run("go1.14.8")
24}