From 0c091acd39455d89b85f07d0801d1e58718e526c Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Sat, 14 Jun 2025 00:08:11 -0600 Subject: [PATCH] 1.2-dev --- installer_auto.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/installer_auto.sh b/installer_auto.sh index b93e14c..aee7de6 100644 --- a/installer_auto.sh +++ b/installer_auto.sh @@ -9,10 +9,19 @@ else username=$USER fi +echo "Updating Software Lists" sudo apt update + +echo "Installing git" sudo apt install git -y + +echo "Cloning Repo" cd /home/$username git clone https://github.com/PrincessPi3/Precision-Timekeeping-Fuckery.git cd /home/$username/Precision-Timekeeping-Fuckery -echo "installer_auto.sh complete" > ./status.txt + +echo "Fixing Permissions on Repo" sudo chown $username:$username -R /home/$username/Precision-Timekeeping-Fuckery + +echo "Done!" +echo "installer_auto.sh complete" > ./status.txt