Updated update script

This commit is contained in:
Hunter Wittenborn 2021-06-30 13:57:02 -05:00
parent 6fb995aa30
commit bdc824c357

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -e
# The following packages are needed to function: curl, jq
source PKGBUILD
@ -7,7 +8,11 @@ api_data="$(curl -sH "Accept: application/vnd.github.v3+json" "https://api.githu
latest_version="$( echo "${api_data}" | jq -r '.tag_name' | rev | head -c -2 | rev)"
if [[ "${pkgver}" != "${latest_version}" ]]; then
if [[ "${pkgver}" == "${latest_version}" ]]; then
echo "Package is up to date."
exit 1
fi
echo "Updating PKGBUILD info..."
number=1
@ -27,6 +32,6 @@ if [[ "${pkgver}" != "${latest_version}" ]]; then
sed -i "s|pkgver=.*|pkgver='${latest_version}'|" PKGBUILD
sed -i "s|sha256sums_x86_64=.*|sha256sums_x86_64=('${checksum_value}')|" PKGBUILD
fi
echo "Done."
exit 0