Probably should version bump it

This commit is contained in:
Zergling_man 2023-10-13 20:59:34 +11:00
parent e9ed7b3e11
commit 261f125761
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#Well, it seems to work now.
pkgname=clemmy
pkgver=0.1.3
pkgver=0.1.4
pkgrel=1
pkgdesc='A pure bash client for lemmy, with multiaccount support.'
arch=('any')

View File

@ -12,7 +12,7 @@ while getopts "a:hi:v" o;do case "${o}" in
a) select_account $OPTARG;;
i) INSTANCE=$OPTARG;;
h) echo $actions; exit;;
v) echo 0.1.3; exit;;
v) echo 0.1.4; exit;;
esac done
shift $((OPTIND-1))