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

fix: curl failing

This commit is contained in:
aclist 2024-01-12 15:56:53 +09:00
parent 66d7d16c36
commit b8fbe36c4e
2 changed files with 3 additions and 4 deletions

View file

@ -529,7 +529,7 @@ fetch_helpers_by_sum(){
["ui.py"]="8c430f1465995cbd98f4ad8e2580a79d"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="bacc774e52229ed6848829d06f96376e"
["funcs"]="d2537e9b7916453fbfe55592d92e683f"
)
local author="aclist"
local repo="dztui"

View file

@ -689,7 +689,6 @@ src_path="$src_path"
END
}
format_version_url(){
echo FORMAT
case "$branch" in
"stable")
version_url="$stable_url/dzgui.sh"
@ -702,8 +701,8 @@ format_version_url(){
}
download_new_version(){
local version_url="$(format_version_url)"
curl -L "$version_url" > /tmp/dzg.new
mv /tmp/dzg.new "$src_path"
mv "$src_path" "$src_path.old"
curl -Ls "$version_url" > "$src_path"
rc=$?
if [[ $rc -eq 0 ]]; then
dl_changelog