diff --git a/customscripts/setup_git.sh b/customscripts/setup_git.sh index 66ba2bd..ad04bba 100644 --- a/customscripts/setup_git.sh +++ b/customscripts/setup_git.sh @@ -6,8 +6,8 @@ read -s -p 'Enter Github Classic Token (https://github.com/settings/tokens): ' g read -p 'Enter Email Address: ' gh_email read -p 'Enter Github Username: ' gh_username -sudo apt update -sudo apt install git gh -y +# sudo apt update +# sudo apt install git gh -y echo "Saving Token to ~/.gh_token" echo $gh_token > ~/.gh_token @@ -21,4 +21,6 @@ echo "Configuring Git" git config --global user.email "$gh_email" git config --global user.name "$gh_username" -echo "DONE WOOO :3~" \ No newline at end of file +echo "DONE WOOO :3~" + +exit 0 \ No newline at end of file