aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorAnton Evangelatov <anton.evangelatov@gmail.com>2018-07-30 16:56:40 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-07-30 16:56:40 +0800
commita5d5609e3810fd161e55950eb44d8314e3f1e169 (patch)
tree1b387f33124da896bd19430dc1dfda882abd101f /internal
parent93c0f1715d1ce6e590811a659d20f0e80277ba6a (diff)
downloaddexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar
dexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.gz
dexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.bz2
dexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.lz
dexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.xz
dexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.tar.zst
dexon-a5d5609e3810fd161e55950eb44d8314e3f1e169.zip
build: rename swarm deb package to ethereum-swarm; change swarm deb version from 1.8.x to 0.3.x (#16988)
* build: add support for different package and binary names * build: bump up copyright date * build: change default PackageName to empty string * build, internal, swarm: enhance build/release process * build: hack ethereum-swarm as a "depends" in deb package * build/ci: remove redundant variables * build, cmd, mobile, params, swarm: remove VERSION file; rename Version to VersionMeta; * internal: remove VERSION() method which reads VERSION file * build: fix VersionFilePath to Version * Makefile: remove clean_go_build_cache.sh until it works * Makefile: revert removal of clean_go_build_cache.sh
Diffstat (limited to 'internal')
-rw-r--r--internal/build/util.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal/build/util.go b/internal/build/util.go
index c6e059f0d..f99ee8396 100644
--- a/internal/build/util.go
+++ b/internal/build/util.go
@@ -60,15 +60,6 @@ func GOPATH() string {
return os.Getenv("GOPATH")
}
-// VERSION returns the content of the VERSION file.
-func VERSION() string {
- version, err := ioutil.ReadFile("VERSION")
- if err != nil {
- log.Fatal(err)
- }
- return string(bytes.TrimSpace(version))
-}
-
var warnedAboutGit bool
// RunGit runs a git subcommand and returns its output.