diff options
author | Xorg | 2022-10-03 20:27:26 +0200 |
---|---|---|
committer | Xorg | 2022-10-03 20:27:26 +0200 |
commit | af8178dd54985ebef7778aeebd17e863baedf4be (patch) | |
tree | 83dd28026aa18392ed742ba1cef58fca7021422f | |
parent | a69e4de104cd0b065f5a0a09e2b07faaf98f0265 (diff) | |
download | aur-af8178dd54985ebef7778aeebd17e863baedf4be.tar.gz |
Fix update for choice #1
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 4 | ||||
-rw-r--r-- | memtest86-efi | 6 |
3 files changed, 5 insertions, 9 deletions
@@ -1,7 +1,7 @@ pkgbase = memtest86-efi pkgdesc = A free, thorough, stand alone memory test as an EFI application pkgver = 10.0build1000 - pkgrel = 3 + pkgrel = 4 epoch = 1 url = https://www.memtest86.com install = memtest86-efi.install @@ -17,7 +17,7 @@ pkgbase = memtest86-efi source = memtest86-efi.conf source = memtest86-efi-update.hook sha512sums = b08e6cf3cb9448d5ac7fb4ba7c6338d2037caebd16710f4c2897cfe73766d7dfba7a0012b1ec5acbc546932e989c2a82bec1428295ea0bf4702e49d75e5b03e1 - sha512sums = 3dca787bb9727779c052cb97e725010ab1092940f6efba56aeca0d998d842ac369fa9db92c60513174b23b921509a94237ae37b59d833bd836c5a4e3cf4897c8 + sha512sums = e509a3e0b70d6a6cacb3ab0e99c43d2eef29863f2f59fd6f0a858d9d8a97b0e7b432ac965a22e37bf01f5ba63fadcdc47eae49e68e53edb848ee8a03707e98a1 sha512sums = 5eb6231096484d8923fa9943401c5f5e654a498028b3b4c0b19d26c8265fd8882c94ee90dfa23fabcfb1f8d3812e0a502c195d57b4fbdf5cc25f3ac8dcb36759 sha512sums = a8936ed4a1955d69251955b824cfdfc606c374d40509a767ee4e357e746947d5bf1bd6793e5a4224733907556375bee05c0dd27f8044604f136d84c9be365d42 @@ -4,7 +4,7 @@ _realname=memtest86 pkgname=$_realname-efi epoch=1 pkgver=10.0build1000 -pkgrel=3 +pkgrel=4 pkgdesc="A free, thorough, stand alone memory test as an EFI application" arch=('any') url="https://www.memtest86.com" @@ -19,7 +19,7 @@ source=("$pkgname-$pkgver.zip::https://github.com/X0rg/AUR-packages/raw/master/f "memtest86-efi.conf" "memtest86-efi-update.hook") sha512sums=('b08e6cf3cb9448d5ac7fb4ba7c6338d2037caebd16710f4c2897cfe73766d7dfba7a0012b1ec5acbc546932e989c2a82bec1428295ea0bf4702e49d75e5b03e1' - '3dca787bb9727779c052cb97e725010ab1092940f6efba56aeca0d998d842ac369fa9db92c60513174b23b921509a94237ae37b59d833bd836c5a4e3cf4897c8' + 'e509a3e0b70d6a6cacb3ab0e99c43d2eef29863f2f59fd6f0a858d9d8a97b0e7b432ac965a22e37bf01f5ba63fadcdc47eae49e68e53edb848ee8a03707e98a1' '5eb6231096484d8923fa9943401c5f5e654a498028b3b4c0b19d26c8265fd8882c94ee90dfa23fabcfb1f8d3812e0a502c195d57b4fbdf5cc25f3ac8dcb36759' 'a8936ed4a1955d69251955b824cfdfc606c374d40509a767ee4e357e746947d5bf1bd6793e5a4224733907556375bee05c0dd27f8044604f136d84c9be365d42') diff --git a/memtest86-efi b/memtest86-efi index 3d1daa6cb8a8..e1adb4f822b3 100644 --- a/memtest86-efi +++ b/memtest86-efi @@ -238,11 +238,7 @@ update() { _mount_esp "$esp_partition" "$esp_mount_path" case $choice in - 1) # Update files in $esp_mount_path/ - _common_install "$esp_mount_path" "$memtest86_esp_bin" - ;; - - 2|3|4) # Update files in ${esp_mount_path}${memtest86_esp_path}/ + 1|2|3|4) # Update files in ${esp_mount_path}${memtest86_esp_path}/ _common_install "${esp_mount_path}${memtest86_esp_path}" "$memtest86_esp_bin" ;; esac |