From c838f90861741ef04c041a66bdb2ee987cf4edc2 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 5 Aug 2022 03:27:29 +0900 Subject: [PATCH] Set branch to stable if no config file present --- dzgui.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dzgui.sh b/dzgui.sh index 9465ada..3113baf 100644 --- a/dzgui.sh +++ b/dzgui.sh @@ -665,7 +665,10 @@ check_branch(){ upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}') } check_version(){ - source $config_file + if [[ ! -f $config_file ]]; then : else source $config_file; fi + if [[ -z $branch ]]; then + branch="stable" + fi check_branch if [[ $version == $upstream ]]; then check_unmerged