check-updates.sh: fix epoch/version splitting

This commit is contained in:
Leonid Pliushch 2021-01-02 23:29:23 +02:00
parent 5c95b08ede
commit 008cc0e4aa
No known key found for this signature in database
GPG Key ID: 45F2964132545795
1 changed files with 2 additions and 1 deletions

View File

@ -28,9 +28,10 @@ if [ -f "${BASEDIR}/github-projects.txt" ]; then
fi
# Our local version of package.
termux_version=$(set +e +u;. "${BASEDIR}/../../packages/${package}/build.sh" 2>/dev/null; echo "$TERMUX_PKG_VERSION" | cut -d: -f2-)
termux_version=$(set +e +u;. "${BASEDIR}/../../packages/${package}/build.sh" 2>/dev/null; echo "$TERMUX_PKG_VERSION")
termux_epoch="$(echo "$termux_version" | cut -d: -f1)"
[ -n "$termux_epoch" ] && termux_epoch+=":"
termux_version=$(echo "$termux_version" | cut -d: -f2-)
# Latest version is the current release tag on Github.
latest_version=$(curl --silent -H "Authorization: token ${GITHUB_API_TOKEN}" "https://api.github.com/repos/${project}/releases/latest" | jq -r .tag_name)