From 4da78d33f350dc8fd364c0c285d7fd4acd2f2616 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 13 Dec 2024 09:58:44 +0900 Subject: [PATCH] fix: clean up URLs --- dzgui.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index b5af209..a92e175 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -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"