1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-03 19:13:00 +02:00

fix: clean up URLs

This commit is contained in:
aclist 2024-12-13 09:58:44 +09:00
parent 5d6cbaa1a5
commit 4da78d33f3

View file

@ -606,11 +606,7 @@ fetch_helpers_by_sum(){
sum="${sums[$i]}"
full_path="$helpers_path/$file"
if [[ $remote_host == "gh" ]]; then
url="https://raw.githubusercontent.com/$author/$repo/$realbranch/helpers/$file"
else
url="https://codeberg.org/$author/$repo/raw/branch/$realbranch/helpers/$file"
fi
url="${url_prefix}/$realbranch/helpers/$file"
if [[ -f "$full_path" ]] && [[ $(get_hash "$full_path") == $sum ]]; then
logger INFO "$file is current"
@ -895,7 +891,6 @@ test_connection(){
[[ $res -ne 200 ]] && raise_error_and_quit "$str (${hr["codeberg.org"]})"
fi
logger INFO "Set remote host to '${hr["codeberg.org"]}'"
remote_host=cb
if [[ $remote_host == "cb" ]]; then
url_prefix="https://codeberg.org/$author/$repo/raw/branch"
releases_url="https://codeberg.org/$author/$repo/releases/download/browser"