1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43:00 +02:00

fix: url prefix

This commit is contained in:
aclist 2023-11-15 19:59:07 +09:00
parent e6f808892b
commit d8e7144ea8

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail
version=4.0.0-rc.1
version=4.0.0-rc.2
aid=221100
game="dayz"
@ -1739,9 +1739,6 @@ check_architecture(){
logger INFO "Setting architecture to 'desktop'"
fi
}
log(){
echo "$@" >> $HOME/log
}
print_ip_list(){
for ((i=0; i<${#ip_list[@]}; ++i)); do
printf "\t\"%s\"\n" ${ip_list[$i]}
@ -1992,8 +1989,9 @@ fetch_dzq(){
fetch_query(){
[[ -f $helpers_path/query.py ]] && return
local author="aclist"
local repo="dztui"
local url="https://raw.githubusercontent.com/$author/$repo/helpers/query.py"
local repo="$branch"
local url="https://raw.githubusercontent.com/$author/dztui/$repo/helpers/query.py"
local real="https://raw.githubusercontent.com/aclist/dztui/testing/helpers/query.py"
curl -Ls "$url" > "$helpers_path/query.py"
}
fetch_helpers(){