diff --git a/gotop.go b/gotop.go index ce2c04a..f80611d 100644 --- a/gotop.go +++ b/gotop.go @@ -13,7 +13,7 @@ import ( "github.com/docopt/docopt-go" ) -const VERSION = "1.0.0" +const VERSION = "1.0.1" var ( resized = make(chan bool, 1) diff --git a/install.sh b/install.sh index 490897a..108c9fd 100755 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION=1.0.0 +VERSION=1.0.1 print_error() { echo "No binary found for your architecture. If your architecture is compatible with a binary" @@ -27,7 +27,8 @@ update() { arch=$(uname -sm) case "$arch" in - Linux\ x86_64) install linux_amd64 ;; + Linux\ *64) install linux_amd64 ;; + Linux\ *86) install linux_386 ;; *) print_error exit 1 diff --git a/packages/AUR/PKGBUILD b/packages/AUR/PKGBUILD index 118bcfe..da3e129 100644 --- a/packages/AUR/PKGBUILD +++ b/packages/AUR/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Caleb Bassi pkgname=gotop -pkgver=1.0.0 +pkgver=1.0.1 pkgrel=1 pkgdesc="A TUI graphical activity monitor inspired by gtop" arch=("x86_64")