summaryrefslogtreecommitdiff
path: root/update-archlinux32-package
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2021-06-25 21:28:54 +0200
committerErich Eckner <git@eckner.net>2021-06-25 21:28:54 +0200
commit9830d3ab42adc947e1a17aa0da0e44fea840466c (patch)
tree4b3bf665bd785dcb6e7077daa070da4e3f1d9f59 /update-archlinux32-package
parent9c1f4b6d643d967f6f6cc085f9973c65b085231b (diff)
downloaddevops-9830d3ab42adc947e1a17aa0da0e44fea840466c.tar.xz
update-archlinux32-package: fix checksum regex
Diffstat (limited to 'update-archlinux32-package')
-rwxr-xr-xupdate-archlinux32-package2
1 files changed, 1 insertions, 1 deletions
diff --git a/update-archlinux32-package b/update-archlinux32-package
index 3b283f4..bcb2768 100755
--- a/update-archlinux32-package
+++ b/update-archlinux32-package
@@ -320,7 +320,7 @@ case ${update_path} in
;;
esac
- if ! grep -qwF sha512sum "${git_repo_path}/${repo}/${pkgname}/PKGBUILD"; then
+ if ! grep -qwF sha256sums "${git_repo_path}/${repo}/${pkgname}/PKGBUILD"; then
>&2 printf 'Something went wrong: %s has no checksum\nDid you run out of disk space again, deep42thought?\n' \
"${git_repo_path}/${repo}/${pkgname}"
exit 1