diff options
author | Martin Holst Swende <martin@swende.se> | 2019-03-04 19:02:58 +0800 |
---|---|---|
committer | Martin Holst Swende <martin@swende.se> | 2019-03-04 19:02:58 +0800 |
commit | e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff (patch) | |
tree | 8e5a4cc8c99814b7ed1f84ee2137a15d195bd20b | |
parent | f9aa1cd21f776a4d3267d9c89772bdc622468d6d (diff) | |
download | go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.tar go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.tar.gz go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.tar.bz2 go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.tar.lz go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.tar.xz go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.tar.zst go-tangerine-e2d322b25a9ed46f06cbcd87cb1221945dd1c4ff.zip |
build: add clef to alltools and deb
-rw-r--r-- | build/ci.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/build/ci.go b/build/ci.go index 0413d5155..f5553fd30 100644 --- a/build/ci.go +++ b/build/ci.go @@ -80,6 +80,7 @@ var ( executablePath("puppeth"), executablePath("rlpdump"), executablePath("wnode"), + executablePath("clef"), } // Files that end up in the swarm*.zip archive. @@ -118,6 +119,10 @@ var ( BinaryName: "wnode", Description: "Ethereum Whisper diagnostic tool", }, + { + BinaryName: "clef", + Description: "Ethereum account management tool.", + }, } // A debian package is created for all executables listed here. |