From f57973c1456607e38266d6af702a7c976fe7ed3e Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 12 Jan 2024 14:34:25 +0900 Subject: [PATCH] fix: full path to UI helper --- dzgui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index c9bd89d..0dae4f7 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -795,8 +795,8 @@ main(){ local news=$(check_news) printf "All OK. Kicking off UI...\n" - [[ -n $news ]] && python3 "ui.py" "--init-ui" "$news" "$version" - [[ -z $news ]] && python3 "ui.py" "--init-ui" "null" "$version" + [[ -n $news ]] && python3 "$ui_helper" "--init-ui" "$news" "$version" + [[ -z $news ]] && python3 "$ui_helper" "--init-ui" "null" "$version" } main #TODO: tech debt: cruddy handling for steam forking