mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 19:43:00 +02:00
Fix regex
This commit is contained in:
parent
a34dbe09ce
commit
46f28abfa0
1 changed files with 2 additions and 1 deletions
3
dzgui.sh
3
dzgui.sh
|
@ -375,6 +375,7 @@ download_new_version(){
|
|||
rc=$?
|
||||
if [[ $rc -eq 0 ]]; then
|
||||
echo "[DZGUI] Wrote $upstream to $source_dir/dzgui.sh"
|
||||
chmod +x $source_dir/dzgui.sh
|
||||
zenity --info --title="DZGUI" --text "DZGUI $upstream successfully downloaded.\nExit and restart to use the new version." 2>/dev/null
|
||||
exit
|
||||
else
|
||||
|
@ -385,7 +386,7 @@ download_new_version(){
|
|||
|
||||
}
|
||||
check_version(){
|
||||
upstream=$(curl -Ls "$version_url" | awk -F= '/version=/ {print $2}')
|
||||
upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}')
|
||||
if [[ $version == $upstream ]]; then
|
||||
:
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue