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"
)
const VERSION = "1.0.0"
const VERSION = "1.0.1"
var (
resized = make(chan bool, 1)

View File

@ -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

View File

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