summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-04-09 19:02:46 -0700
committerCaleb Bassi <calebjbassi@gmail.com>2018-04-09 19:02:46 -0700
commit403bdc747b8bb00b5309da3e0256d7d6a29da05e (patch)
treebeaccfd089becd03ee2b299fa1c6bbbd934fcb25
parentb36602ca97357a075a13368e123ab7b9b4979418 (diff)
Bump version
-rwxr-xr-xdownload.sh4
-rw-r--r--main.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/download.sh b/download.sh
index ddecfd1..9bd40e1 100755
--- a/download.sh
+++ b/download.sh
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
-VERSION=1.2.3
+VERSION=1.2.4
download() {
- archive=gotop-$VERSION-${1}.tgz
+ archive=gotop_${VERSION}_${1}.tgz
curl -LO https://github.com/cjbassi/gotop/releases/download/$VERSION/$archive
tar xf $archive
rm $archive
diff --git a/main.go b/main.go
index 9c6f287..1eb326c 100644
--- a/main.go
+++ b/main.go
@@ -14,7 +14,7 @@ import (
"github.com/docopt/docopt-go"
)
-const VERSION = "1.2.3"
+const VERSION = "1.2.4"
var (
termResized = make(chan bool, 1)