mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
Set branch to stable if no config file present
This commit is contained in:
parent
1d020f4233
commit
c838f90861
1 changed files with 4 additions and 1 deletions
5
dzgui.sh
5
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
|
||||
|
|
Loading…
Reference in a new issue