From 8c12c6939aab9106db14ec2d11d983bc5b29fb2c Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sun, 7 Jul 2019 21:33:44 +0100 Subject: Switch to modules --- vendor/github.com/gobuffalo/packr/env.go | 39 -------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 vendor/github.com/gobuffalo/packr/env.go (limited to 'vendor/github.com/gobuffalo/packr/env.go') diff --git a/vendor/github.com/gobuffalo/packr/env.go b/vendor/github.com/gobuffalo/packr/env.go deleted file mode 100644 index c52e73a..0000000 --- a/vendor/github.com/gobuffalo/packr/env.go +++ /dev/null @@ -1,39 +0,0 @@ -package packr - -import ( - "os" - "os/exec" - "path/filepath" - "strings" - "sync" -) - -var goPath = filepath.Join(os.Getenv("HOME"), "go") - -func init() { - var once sync.Once - once.Do(func() { - cmd := exec.Command("go", "env", "GOPATH") - b, err := cmd.CombinedOutput() - if err != nil { - return - } - goPath = strings.TrimSpace(string(b)) - }) -} - -// GoPath returns the current GOPATH env var -// or if it's missing, the default. -func GoPath() string { - return goPath -} - -// GoBin returns the current GO_BIN env var -// or if it's missing, a default of "go" -func GoBin() string { - go_bin := os.Getenv("GO_BIN") - if go_bin == "" { - return "go" - } - return go_bin -} -- cgit v1.2.3