mirror of
https://github.com/golang/go
synced 2024-11-18 14:54:40 -07:00
ac1e4b1998
Initial commit of getgo, a "one-line installer". Example use from bash: curl -LO https://get.golang.org/$(uname)/go_installer && chmod +x go_installer && ./go_installer && rm go_installer It's comprised of two parts: cmd/getgo/server: an App Engine application that redirects users to an appropriate installer based on the request path, which identifies the user's operating system. It's deployed to get.golang.org. cmd/getgo: a cross-compiled binary that does the heavy lifting of downloading and installing the latest Go version (including setting up the environment) to the user's system. The installers are served from the golang GCS bucket. Currently supported systems: linux, darwin, windows / amd64, 386 Authored by Jess Frazelle, Steve Francia, Chris Broadfoot. Change-Id: I615de86e198d3bd93e418fa23055d00ddbdd99fb Reviewed-on: https://go-review.googlesource.com/51115 Reviewed-by: Jaana Burcu Dogan <jbd@google.com>
51 lines
967 B
Go
51 lines
967 B
Go
// Copyright 2017 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.
|
|
|
|
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
const (
|
|
envSeparator = ":"
|
|
homeKey = "HOME"
|
|
lineEnding = "\n"
|
|
pathVar = "$PATH"
|
|
)
|
|
|
|
var installPath = func() string {
|
|
home, err := getHomeDir()
|
|
if err != nil {
|
|
return "/usr/local/go"
|
|
}
|
|
|
|
return filepath.Join(home, ".go")
|
|
}()
|
|
|
|
func isWindowsXP() bool {
|
|
return false
|
|
}
|
|
|
|
func currentShell() string {
|
|
return os.Getenv("SHELL")
|
|
}
|
|
|
|
func persistEnvChangesForSession() error {
|
|
shellConfig, err := shellConfigFile()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Println()
|
|
fmt.Printf("One more thing! Run `source %s` to persist the\n", shellConfig)
|
|
fmt.Println("new environment variables to your current session, or open a")
|
|
fmt.Println("new shell prompt.")
|
|
|
|
return nil
|
|
}
|