diff options
author | Erich Eckner <git@eckner.net> | 2019-02-01 11:47:33 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-02-01 11:47:33 +0100 |
commit | c3563257f55bd64419546f7581f4a4147f65cbd8 (patch) | |
tree | 3cfe9c4c1bb0049f0520b57c918e767ecd0f0ad1 /update-archlinux32-package | |
parent | f0b48eeb00d922584145e9355e4066b4e8a18a4a (diff) | |
download | devops-c3563257f55bd64419546f7581f4a4147f65cbd8.tar.xz |
update-archlinux32-package: first calculate $new_pkgver, then check for equality!
Diffstat (limited to 'update-archlinux32-package')
-rwxr-xr-x | update-archlinux32-package | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/update-archlinux32-package b/update-archlinux32-package index ba06e72..d8be21a 100755 --- a/update-archlinux32-package +++ b/update-archlinux32-package @@ -147,15 +147,15 @@ case ${update_path} in grep '^pkgver=' "${git_repo_path}/${repo}/${pkgname}/PKGBUILD" | \ cut -d'=' -f2 ) - if [ "${old_pkgver}" = "${new_pkgver}" ]; then - >&2 echo 'nothing to do' - exit - fi new_pkgver=$( printf '%s\n' "${archlinuxewe_PKGBUILD}" | \ grep '^pkgver=' | \ cut -d'=' -f2 ) + if [ "${old_pkgver}" = "${new_pkgver}" ]; then + >&2 echo 'nothing to do' + exit + fi sha512sums=$( cd "${archlinuxewe_git_path}/${pkgname}32" makepkg -g | \ |