diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-03 21:45:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-03 21:45:39 +0800 |
commit | e1dc7ece624a2f539b71f1dfb5901047f7a9f214 (patch) | |
tree | a123119ddcd71cdaf719a779161d22303fea182e | |
parent | cad071009d935e1e31dadd684bec25a0d1b15338 (diff) | |
parent | 99127ff2e7930c9aa1d5b8f29bb27f811fd53db3 (diff) | |
download | go-tangerine-e1dc7ece624a2f539b71f1dfb5901047f7a9f214.tar.gz go-tangerine-e1dc7ece624a2f539b71f1dfb5901047f7a9f214.tar.zst go-tangerine-e1dc7ece624a2f539b71f1dfb5901047f7a9f214.zip |
Merge pull request #14414 from gluk256/77_release
build: wnode added to the build configuration
-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 8b6ebe74c..47b1dc780 100644 --- a/build/ci.go +++ b/build/ci.go @@ -77,6 +77,7 @@ var ( executablePath("puppeth"), executablePath("rlpdump"), executablePath("swarm"), + executablePath("wnode"), } // A debian package is created for all executables listed here. @@ -109,6 +110,10 @@ var ( Name: "swarm", Description: "Ethereum Swarm daemon and tools", }, + { + Name: "wnode", + Description: "Ethereum Whisper diagnostic tool", + }, } // Distros for which packages are created. |