mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-24 03:32:39 +00:00
12 lines
328 B
Bash
12 lines
328 B
Bash
# shellcheck shell=bash
|
|
# Default algorithm to use for packages hosted on github.com
|
|
termux_github_auto_update() {
|
|
local latest_tag
|
|
latest_tag="$(termux_github_api_get_tag)"
|
|
|
|
if [[ -z "${latest_tag}" ]]; then
|
|
termux_error_exit "Unable to get tag from ${TERMUX_PKG_SRCURL}"
|
|
fi
|
|
termux_pkg_upgrade_version "${latest_tag}"
|
|
}
|