From 6649a696c0aeae921d60ba53728e0ba7f79b378a Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Tue, 23 May 2023 09:44:29 -0700 Subject: [PATCH] updated updater --- .../Updater Files/Update_Sovran_SystemsOS | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Sovran_SystemsOS_Updater/Updater Files/Update_Sovran_SystemsOS b/Sovran_SystemsOS_Updater/Updater Files/Update_Sovran_SystemsOS index 647e84a..a733ddf 100755 --- a/Sovran_SystemsOS_Updater/Updater Files/Update_Sovran_SystemsOS +++ b/Sovran_SystemsOS_Updater/Updater Files/Update_Sovran_SystemsOS @@ -1,8 +1,10 @@ #!/usr/bin/env bash +link=$(curl https://git.sovransystems.com/Sovran_Systems/Sovran_Systems_Packages/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Files/Intro_Info) + zenity --text-info \ ---filename="$(curl https://git.sovransystems.com/Sovran_Systems/Sovran_Systems_Packages/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Files/Intro_Info)" \ +--filename="$link" \ --title="Sovran_SystemsOS Updater" \ --width=850 \ --height=730 \ @@ -34,12 +36,12 @@ password=$(zenity --password --title="Sovran_SystemsOS Updater") pushd /etc/nixos/ - echo -e $password | sudo -S nix flake update + echo -e "$password" | sudo -S nix flake update popd - echo -e $password | sudo -S nixos-rebuild switch --impure | + echo -e "$password" | sudo -S nixos-rebuild switch --impure | zenity --progress \ --no-cancel \ --auto-close \