summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxelen1232022-01-07 12:32:09 +0100
committerAxelen1232022-01-07 12:32:09 +0100
commit3a2945d3ad42fb32c3571c2c018cd4e3ee0adfa4 (patch)
treee2910063768a2486dd0f8aedf22474faecf5569d
parent9c0774dd07e32b6367a4e011623fe4e3c9587fd6 (diff)
downloadaur-3a2945d3ad42fb32c3571c2c018cd4e3ee0adfa4.tar.gz
Fix error
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 532b111ad367..e29c10f1669a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = grub-improved-luks2-git
pkgdesc = GNU GRand Unified Bootloader (2) with Argon2 and better LUKS2 support
pkgver = 2.06.r92.g246d69b7e
- pkgrel = 4
+ pkgrel = 5
url = https://www.gnu.org/software/grub/
install = grub-improved-luks2-git.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index c003781fba9f..7a34df9d9f21 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,7 @@
## "1" to enable EMU build, "0" to disable
# _grub_emu_build="0"
-[[ "${CARCH}" == "x86_64" ]] && _target_arch="x86_64" || echo "Only amd64 with efi is supported."
+[[ "${CARCH}" == "x86_64" ]] && _target_arch="x86_64" || (echo "Only amd64 with efi is supported." 1>&2; exit 1)
# [[ "${CARCH}" == "i686" ]] && _target_arch="i386"
# _build_platforms="i386-pc ${_target_arch}-efi"
@@ -20,7 +20,7 @@
_pkgname="grub"
pkgname="${_pkgname}-improved-luks2-git"
pkgver=2.06.r92.g246d69b7e
-pkgrel=4
+pkgrel=5
pkgdesc="GNU GRand Unified Bootloader (2) with Argon2 and better LUKS2 support"
arch=('x86_64')
url="https://www.gnu.org/software/grub/"