11 lines
462 B
Bash
Executable File
11 lines
462 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
cd /home/free/Downloads
|
|
|
|
wget "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Update_Sovran_SystemsOS_Root.sh"
|
|
|
|
bash /home/free/Downloads/Update_Sovran_SystemsOS_Root.sh | zenity --progress --no-cancel --pulsate --auto-close --width=500 --title="Sovran_SystemsOS_Updater" --text="Update In Progress"
|
|
|
|
rm -rf /home/free/Downloads/Update_Sovran_SystemsOS_Root.sh
|
|
|
|
exit 0 |