mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03: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=$?
|
rc=$?
|
||||||
if [[ $rc -eq 0 ]]; then
|
if [[ $rc -eq 0 ]]; then
|
||||||
echo "[DZGUI] Wrote $upstream to $source_dir/dzgui.sh"
|
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
|
zenity --info --title="DZGUI" --text "DZGUI $upstream successfully downloaded.\nExit and restart to use the new version." 2>/dev/null
|
||||||
exit
|
exit
|
||||||
else
|
else
|
||||||
|
@ -385,7 +386,7 @@ download_new_version(){
|
||||||
|
|
||||||
}
|
}
|
||||||
check_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
|
if [[ $version == $upstream ]]; then
|
||||||
:
|
:
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue