updated updater fix

This commit is contained in:
naturallaw77 2023-12-02 14:56:20 -08:00
parent 239a60e3c7
commit 56faedf1ba

View File

@ -26,7 +26,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
--text="Updating Flatpaks" \ --text="Updating Flatpaks" \
--title="Sovran_SystemsOS Updater" --title="Sovran_SystemsOS Updater"
if [[ $? != 0 ]]; then if [[ $? -eq 0 ]]; then
echo "Could Not Update Flatpaks -- Exiting" | echo "Could Not Update Flatpaks -- Exiting" |
@ -49,7 +49,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
--text="Moving Files Into Place..." \ --text="Moving Files Into Place..." \
--title="Sovran_SystemsOS Updater" --title="Sovran_SystemsOS Updater"
if [[ $? != 0 ]]; then if [[ $? -eq 0 ]]; then
echo "Could Not Update Flake -- Exiting" | echo "Could Not Update Flake -- Exiting" |
@ -71,7 +71,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
--text="Updating Now - In Rare Cases, It Could Take Up To 3 Hours - Please Be Patient..." \ --text="Updating Now - In Rare Cases, It Could Take Up To 3 Hours - Please Be Patient..." \
--title="Sovran_SystemsOS Updater" --title="Sovran_SystemsOS Updater"
if [[ $? != 0 ]]; then if [[ $? -eq 0 ]]; then
echo "Could Not Update Sovran_SystemsOS -- Exiting" | echo "Could Not Update Sovran_SystemsOS -- Exiting" |