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

Populate branch value correctly

This commit is contained in:
aclist 2022-08-01 02:52:59 +09:00 committed by GitHub
parent fdeb29c5a9
commit 893413cfe1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=2.4.0-rc.2 version=2.4.0-rc.3
aid=221100 aid=221100
game="dayz" game="dayz"
workshop="steam://url/CommunityFilePage/" workshop="steam://url/CommunityFilePage/"
@ -143,7 +143,7 @@ name="$name"
debug="0" debug="0"
#Toggle stable/testing branch #Toggle stable/testing branch
branch="stable" branch="$branch"
#Last seen news item #Last seen news item
seen_news="" seen_news=""
@ -753,6 +753,7 @@ prompt_dl(){
} }
check_version(){ check_version(){
source $config_file source $config_file
[[ -z $branch ]] && branch="stable"
check_branch check_branch
if [[ $version == $upstream ]]; then if [[ $version == $upstream ]]; then
check_unmerged check_unmerged