Bumped version and updated install.sh for 32bit

This commit is contained in:
Caleb Bassi 2018-02-19 20:19:00 -08:00
parent 26942f61ae
commit 8a32ce32ff
3 changed files with 5 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import (
"github.com/docopt/docopt-go" "github.com/docopt/docopt-go"
) )
const VERSION = "1.0.0" const VERSION = "1.0.1"
var ( var (
resized = make(chan bool, 1) resized = make(chan bool, 1)

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VERSION=1.0.0 VERSION=1.0.1
print_error() { print_error() {
echo "No binary found for your architecture. If your architecture is compatible with a binary" echo "No binary found for your architecture. If your architecture is compatible with a binary"
@ -27,7 +27,8 @@ update() {
arch=$(uname -sm) arch=$(uname -sm)
case "$arch" in case "$arch" in
Linux\ x86_64) install linux_amd64 ;; Linux\ *64) install linux_amd64 ;;
Linux\ *86) install linux_386 ;;
*) *)
print_error print_error
exit 1 exit 1

View File

@ -1,7 +1,7 @@
# Maintainer: Caleb Bassi <calebjbassi@gmail.com> # Maintainer: Caleb Bassi <calebjbassi@gmail.com>
pkgname=gotop pkgname=gotop
pkgver=1.0.0 pkgver=1.0.1
pkgrel=1 pkgrel=1
pkgdesc="A TUI graphical activity monitor inspired by gtop" pkgdesc="A TUI graphical activity monitor inspired by gtop"
arch=("x86_64") arch=("x86_64")