From f353505c69dffe2dffd7086cb950d824adbdb83e Mon Sep 17 00:00:00 2001 From: Said Syakin Date: Thu, 1 Feb 2018 01:58:11 +0400 Subject: [PATCH] Rename geth binary to fgeth --- build/ci.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/ci.go b/build/ci.go index 0c825ef31e..4f5c16b838 100644 --- a/build/ci.go +++ b/build/ci.go @@ -197,6 +197,8 @@ func doInstall(cmdline []string) { goinstall.Args = append(goinstall.Args, "-v") goinstall.Args = append(goinstall.Args, packages...) build.MustRun(goinstall) + os.Rename(filepath.Join(GOBIN, "geth"), filepath.Join(GOBIN, "fgeth")) + os.Rename(filepath.Join(GOBIN, "geth.exe"), filepath.Join(GOBIN, "fgeth.exe")) return } // If we are cross compiling to ARMv5 ARMv6 or ARMv7, clean any prvious builds