Black Lives Matter. Support the Equal Justice Initiative.

Source file src/cmd/dist/doc.go

Documentation: cmd/dist

     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  // Dist helps bootstrap, build, and test the Go distribution.
     6  //
     7  // Usage:
     8  //   go tool dist [command]
     9  //
    10  // The commands are:
    11  //   banner         print installation banner
    12  //   bootstrap      rebuild everything
    13  //   clean          deletes all built files
    14  //   env [-p]       print environment (-p: include $PATH)
    15  //   install [dir]  install individual directory
    16  //   list [-json]   list all supported platforms
    17  //   test [-h]      run Go test(s)
    18  //   version        print Go version
    19  package main
    20  

View as plain text