diff options
author | Jakub 'Eremiell' Marek | 2023-05-16 07:13:23 +0200 |
---|---|---|
committer | Jakub 'Eremiell' Marek | 2023-05-16 07:13:23 +0200 |
commit | 0d87a298fb3ce7934878cf8e7e48bd2a57765ecd (patch) | |
tree | 7be1f1b34bab843f73c566e884b48ae6d0270a24 | |
parent | 930eb5e8425ffa2d73f9f69b9cc9724ec67af4f1 (diff) | |
download | aur-0d87a298fb3ce7934878cf8e7e48bd2a57765ecd.tar.gz |
🐛 Fix install script
* One of the strings got parsed wrong by bash
* Sadly missed in initial testing
* Discovered randomly during reinstallation
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 3 | ||||
-rw-r--r-- | pokeclicker-bin.changelog | 9 | ||||
-rw-r--r-- | pokeclicker-bin.install | 6 |
4 files changed, 16 insertions, 6 deletions
@@ -1,8 +1,10 @@ pkgbase = pokeclicker-bin pkgdesc = Game about catching Pokémon, defeating gym leaders, and watching numbers get bigger pkgver = 1.2.0 - pkgrel = 1 + pkgrel = 2 url = https://www.pokeclicker.com/ + install = pokeclicker-bin.install + changelog = pokeclicker-bin.changelog arch = x86_64 license = ISC depends = gtk3 @@ -1,7 +1,8 @@ # Maintainer: Jakub 'Eremiell' Marek <eremiell at eremiell dot net> +# See also https://github.com/eremiell-aur/pokeclicker-bin pkgname=pokeclicker-bin pkgver=1.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Game about catching Pokémon, defeating gym leaders, and watching numbers get bigger" arch=('x86_64') url="https://www.pokeclicker.com/" diff --git a/pokeclicker-bin.changelog b/pokeclicker-bin.changelog index 0ff1a331fc44..71eb7ba13a9a 100644 --- a/pokeclicker-bin.changelog +++ b/pokeclicker-bin.changelog @@ -1,4 +1,11 @@ -# 2023-03-01 / 1.2.0 +# 1.2.0-2 / 2023-05-16 + +* Fix in install script + * One of the strings got parsed wrong by bash, oops + * I somehow completely missed this in testing + * Randomly noticed while reinstalling + +# 1.2.0-1 / 2023-03-01 * First build on AUR * Built from official deb release diff --git a/pokeclicker-bin.install b/pokeclicker-bin.install index 1fc2d213e6ca..41f66937091f 100644 --- a/pokeclicker-bin.install +++ b/pokeclicker-bin.install @@ -1,7 +1,7 @@ post_install() { - echo -e "\e[1;33mExecutable is called pokeclicker.\e[0m" + echo -e '\e[1;33mExecutable is called pokeclicker.\e[0m' echo "" - echo -e "\e[1;32mYou can import your save from web if you have one.\e[0m" + echo -e '\e[1;32mYou can import your save from web if you have one.\e[0m' echo "" - echo -e "\e[1;31mHave fun!\e[0m" + echo -e '\e[1;31mHave fun!\e[0m' } |