From ac3e7ee12852574a888a88fcf59181ce3732cbd9 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sun, 30 Nov 2025 04:51:43 +0900 Subject: [PATCH] fix: incorrect changelog path --- dzgui.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dzgui.sh b/dzgui.sh index 348ea30..895a888 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -377,9 +377,10 @@ prompt_dl(){ dl_changelog(){ local mdbranch local md + source "$config_file" [[ $branch == "stable" ]] && mdbranch="dzgui" [[ $branch == "testing" ]] && mdbranch="testing" - local md="$url_prefix/${mdbranch}/$file" + local changelog="$url_prefix/${mdbranch}/CHANGELOG.md" curl -Ls "$md" > "$state_path/CHANGELOG.md" } test_display_mode(){