aboutsummaryrefslogtreecommitdiffstats
path: root/build/ci.go
diff options
context:
space:
mode:
authorAnton Evangelatov <anton.evangelatov@gmail.com>2018-08-17 16:33:39 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-08-17 16:33:39 +0800
commitf44046a1c6889049dbf0f9448075a43f5b280b09 (patch)
tree9f2385d1c2f1509d4f108dce019bf9e46409d2a8 /build/ci.go
parent2a06791461190b995e67d1c02f44fb358dbd9020 (diff)
downloaddexon-f44046a1c6889049dbf0f9448075a43f5b280b09.tar
dexon-f44046a1c6889049dbf0f9448075a43f5b280b09.tar.gz
dexon-f44046a1c6889049dbf0f9448075a43f5b280b09.tar.bz2
dexon-f44046a1c6889049dbf0f9448075a43f5b280b09.tar.lz
dexon-f44046a1c6889049dbf0f9448075a43f5b280b09.tar.xz
dexon-f44046a1c6889049dbf0f9448075a43f5b280b09.tar.zst
dexon-f44046a1c6889049dbf0f9448075a43f5b280b09.zip
build: do not require `ethereum-swarm` deb when installing `ethereum` (#17425)
Diffstat (limited to 'build/ci.go')
-rw-r--r--build/ci.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/build/ci.go b/build/ci.go
index ff23e15fd..40252cbde 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -644,17 +644,6 @@ func (meta debMetadata) ExeName(exe debExecutable) string {
return exe.Package()
}
-// EthereumSwarmPackageName returns the name of the swarm package based on
-// environment, e.g. "ethereum-swarm-unstable", or "ethereum-swarm".
-// This is needed so that we make sure that "ethereum" package,
-// depends on and installs "ethereum-swarm"
-func (meta debMetadata) EthereumSwarmPackageName() string {
- if isUnstableBuild(meta.Env) {
- return debSwarm.Name + "-unstable"
- }
- return debSwarm.Name
-}
-
// ExeConflicts returns the content of the Conflicts field
// for executable packages.
func (meta debMetadata) ExeConflicts(exe debExecutable) string {