From 46f28abfa0b6d137bf5fc77f91a77c692aec3bdb Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sun, 5 Jun 2022 05:39:20 +0900 Subject: [PATCH] Fix regex --- dzgui.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dzgui.sh b/dzgui.sh index 5b4f779..fb3be5a 100644 --- a/dzgui.sh +++ b/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