diff options
author | C. Brown <hackdom@majoolr.io> | 2019-05-08 21:44:28 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-05-08 21:44:28 +0800 |
commit | be4d74f8d22e573d37a4bf4514aa4320cb62a75d (patch) | |
tree | d451cb8c7c0fb3d91866d933d0038150f951a50f /cmd/geth/main.go | |
parent | c113723fdb9d9fa4c8ac57777f9aecfe97391453 (diff) | |
download | go-tangerine-be4d74f8d22e573d37a4bf4514aa4320cb62a75d.tar.gz go-tangerine-be4d74f8d22e573d37a4bf4514aa4320cb62a75d.tar.zst go-tangerine-be4d74f8d22e573d37a4bf4514aa4320cb62a75d.zip |
cmd, internal/build, docker: advertise commit date in unstable build versions (#19522)
* add-date-to unstable
* fields-insteadof-split
* internal/build: support building with missing git
* docker: add git history back to support commit date in version
* internal/build: use PR commits hashes for PR builds
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 0e89481fe..838029333 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -50,8 +50,9 @@ const ( var ( // Git SHA1 commit hash of the release (set via linker flags) gitCommit = "" + gitDate = "" // The app that holds all commands and flags. - app = utils.NewApp(gitCommit, "the go-ethereum command line interface") + app = utils.NewApp(gitCommit, gitDate, "the go-ethereum command line interface") // flags that configure the node nodeFlags = []cli.Flag{ utils.IdentityFlag, |