From 6473e5ca3cb727d3f6f4cbe132495532a8bfbc0c Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 18 Aug 2018 17:28:03 +1000 Subject: use runtime package to get GOOS and GOARCH --- main.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index b2dc4ee42..9bbf0eec1 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,7 @@ import ( "io/ioutil" "os" "path/filepath" + "runtime" "github.com/jesseduffield/lazygit/pkg/app" "github.com/jesseduffield/lazygit/pkg/config" @@ -15,9 +16,6 @@ var ( commit string version = "unversioned" date string - goos string - arch string - arm string debuggingFlag = flag.Bool("debug", false, "a boolean") versionFlag = flag.Bool("v", false, "Print the current version") @@ -46,7 +44,7 @@ func main() { version = fallbackVersion() } if *versionFlag { - fmt.Printf("commit=%s, build date=%s, version=%s, os=%s, arch=%s, arm=%s\n", commit, date, version, goos, arch, arm) + fmt.Printf("commit=%s, build date=%s, version=%s, os=%s, arch=%s\n", commit, date, version, runtime.GOOS, runtime.GOARCH) os.Exit(0) } appConfig, err := config.NewAppConfig("lazygit", version, commit, date, debuggingFlag) -- cgit v1.2.3