blob: 8d9c4b14810842fe31e3c843cbf07e6060abb2c6 [file] [log] [blame]
// Copyright 2018 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 gotip command compiles and runs the go command from the development tree.
//
// To install, run:
//
// $ go get golang.org/dl/gotip
// $ gotip download
//
// And then use the gotip command as if it were your normal go command.
//
// To update, run "gotip download" again. This will always download the main branch.
// To download an alternative branch, run "gotip download BRANCH".
// To download a specific CL, run "gotip download NUMBER".
package main
import (
"golang.org/dl/internal/version"
)
func main() {
version.RunTip()
}