updated updater fix

This commit is contained in:
naturallaw77 2023-12-03 23:49:39 -08:00
parent 8168de62a6
commit a1626f8eec

View File

@ -16,7 +16,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
else
ssh root@localhost 'flatpak update -y' |
if ! ssh root@localhost 'flatpak update -y' |
zenity --progress \
--no-cancel \
@ -24,9 +24,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
--pulsate \
--width=500 \
--text="Updating Flatpaks" \
--title="Sovran_SystemsOS Updater"
if [[ $? -ne 0 ]]; then
--title="Sovran_SystemsOS Updater"; then
echo "Could Not Update Flatpaks -- Exiting" |
@ -38,9 +36,7 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
fi
xterm -fa 'Noto Mono' -fs 15 -fg white -bg black -e bash -c "ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch --impure'"
if [[ $? -ne 0 ]]; then
if ! xterm -fa 'Noto Mono' -fs 15 -fg white -bg black -e bash -c "ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch --impure'"; then
echo "Could Not Update Sovran_SystemsOS -- Exiting" |
@ -52,10 +48,10 @@ curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovr
fi
zenity --info \
zenity --info \
--ellipsize \
--no-wrap \
--width=500 \
--width=400 \
--title="Sovran_SystemsOS Updater" \
--text="Yay Complete! Please Reboot When You Are Ready."
fi