summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorParagoumba2021-04-05 16:15:10 +0200
committerParagoumba2021-04-05 16:15:10 +0200
commit83d0bc43a268af7461c84fe433334773379923ab (patch)
treed811d2d2ede507255e03172dab87e77afb56a9f3
parentb0d9b1714e2680f05ce12c57143f4611c12f94cd (diff)
downloadaur-83d0bc43a268af7461c84fe433334773379923ab.tar.gz
Fixed typo in BE_KIND heredocs
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 99b8f72b0311..173421af59b7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = itch
pkgdesc = The best way to play itch.io games.
pkgver = 1.24.0
- pkgrel = 5
+ pkgrel = 6
epoch = 1
url = https://github.com/itchio/itch
install = itch.install
diff --git a/PKGBUILD b/PKGBUILD
index b40552f15369..670d80f2c7d4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=itch
pkgver=1.24.0
-pkgrel=5
+pkgrel=6
epoch=1
pkgdesc="The best way to play itch.io games."
@@ -29,9 +29,9 @@ sha256sums=('64152877a7a75485ff6ec904502fb8c9a57f655d2956d4a93131af2cf999a5d3'
package() {
install -Dm755 itch-setup "${pkgdir}/usr/bin/itch-setup"
- cat << BE_KIND > itch
+ cat << 'BE_KIND' > itch
#!/bin/sh
-itch-setup --prefer-launch -- "@$"
+itch-setup --prefer-launch -- "$@"
BE_KIND
install -Dm755 itch "${pkgdir}/usr/bin/itch"