summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyleUltimate2022-06-01 00:13:13 +0800
committerKyleUltimate2022-06-01 00:13:13 +0800
commitaac5c4e4c318561e41c81ec3036780ae4204bcac (patch)
treeeb6bc2c0443ef872d28232f5132d03cabb682031
parent217d19a110bfcb8a2cba82ae46a51c3cfd21c170 (diff)
downloadaur-aac5c4e4c318561e41c81ec3036780ae4204bcac.tar.gz
Actually fix completions
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 631f6563e354..993409dcbc3c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = ferium-bin
pkgdesc = Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and Github Releases
pkgver = 4.1.0
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/gorilla-devs/ferium
arch = x86_64
license = MPL2
@@ -9,7 +9,7 @@ pkgbase = ferium-bin
depends = bzip2
provides = ferium
conflicts = ferium-gui-bin
- source = ferium-4.1.0-2.zip::https://github.com/gorilla-devs/ferium/releases/download/v4.1.0/ferium-linux-gnu-nogui.zip
+ source = ferium-4.1.0-3.zip::https://github.com/gorilla-devs/ferium/releases/download/v4.1.0/ferium-linux-gnu-nogui.zip
sha256sums = cf67105dd2a072518a4fe72cfba30552149fa3c8206943718336188fb4438b92
pkgname = ferium-bin
diff --git a/PKGBUILD b/PKGBUILD
index 4932e4de7cef..3c7f38ea6bff 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=ferium-bin
_pkgname=ferium
pkgver=4.1.0
-pkgrel=2
+pkgrel=3
pkgdesc="Fast and multi-source CLI program for managing Minecraft mods and modpacks from Modrinth, CurseForge, and Github Releases"
arch=("x86_64")
depends=("gcc-libs" "bzip2")
@@ -18,7 +18,7 @@ package() {
cd "$srcdir"
install -Dm755 "ferium" "$pkgdir/usr/bin/ferium"
chmod +x ferium
- ./ferium complete bash | /dev/stdin "${pkgdir}"/usr/share/bash-completion/completions/ferium
+ ./ferium complete bash | install /dev/stdin "${pkgdir}"/usr/share/bash-completion/completions/ferium
./ferium complete zsh | install -Dm644 /dev/stdin "${pkgdir}"/usr/share/zsh/site-functions/_ferium
./ferium complete fish | install -Dm644 /dev/stdin "${pkgdir}"/usr/share/fish/vendor_completions.d/packwiz.fish
}