From 11eeafa289d6f8cd6de546c69dfc80a88b3653e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Mon, 27 Feb 2023 00:48:56 +0100 Subject: [PATCH] Fix --redownload --- msman.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/msman.sh b/msman.sh index 5d409f2..31ce73e 100755 --- a/msman.sh +++ b/msman.sh @@ -235,10 +235,10 @@ function helper_scripts_update { function self_update { # Download the latest version of the script echo "Updating script..." - # Download the file into start_new.sh - curl -sLJ -w '%{http_code}\n' "https://github.com/$REPO_OWNER/$REPO_NAME/releases/download/$LATEST_SCRIPT_VERSION/start.sh" > msman_new.sh + # Download the file into msman_new.sh + curl -sLJ -w '%{http_code}\n' "https://github.com/$REPO_OWNER/$REPO_NAME/releases/download/$LATEST_SCRIPT_VERSION/msman.sh" > msman_new.sh # Check if the download was successful by checking the last line of the file for 200 - if [[ $(cat start_new.sh | tail -n 1) == 200 ]]; then + if [[ $(cat msman_new.sh | tail -n 1) == 200 ]]; then # Remove the last line of the file sed -i '$d' msman_new.sh # Make the file executable