diff options
author | Jesús <heckyel@hyperbola.info> | 2021-10-31 22:48:26 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-10-31 22:48:26 -0500 |
commit | 3852f2b07af746032293515c15c38064b815a308 (patch) | |
tree | c9bbaade844bcde794b2a3f66751a86f3512fd4b /hyperterm/core | |
parent | a81a7b9de705cd5a6ba644e3d361d9bd8a197de7 (diff) | |
download | hyperterm-3852f2b07af746032293515c15c38064b815a308.tar.lz hyperterm-3852f2b07af746032293515c15c38064b815a308.tar.xz hyperterm-3852f2b07af746032293515c15c38064b815a308.zip |
Add sourcehut like mirror
Diffstat (limited to 'hyperterm/core')
-rw-r--r-- | hyperterm/core/update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperterm/core/update.sh b/hyperterm/core/update.sh index 6bdcfdb..8a2015f 100644 --- a/hyperterm/core/update.sh +++ b/hyperterm/core/update.sh @@ -27,14 +27,14 @@ function _url_exists() { function _urls() { URL_1="https://hgit.conocimientoslibres.ga/software/hyperterm.git" - URL_2="https://notabug.org/heckyel/hyperterm" + URL_2="https://git.sr.ht/~heckyel/hyperterm" if [[ $(_url_exists "$URL_1") -eq 0 ]]; then URL="$URL_1" RAW="$URL_1/plain" elif [[ $(_url_exists "$URL_2") -eq 0 ]]; then URL="$URL_2" - RAW="$URL_2/raw/master" + RAW="$URL_2/blob/master" fi } # ---------------------- |