1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-28 05:12:36 +01:00

fix: full path to UI helper

This commit is contained in:
aclist 2024-01-12 14:34:25 +09:00
parent 06a389eebe
commit f57973c145

View file

@ -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