From 787216ebffd1cbad6e6077902ca50e3a128044e2 Mon Sep 17 00:00:00 2001 From: Norman Date: Sat, 4 Apr 2026 07:22:52 -0400 Subject: [PATCH] add git auth block to install file. --- debian/install.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/install.sh b/debian/install.sh index 36c1be6..7440da7 100755 --- a/debian/install.sh +++ b/debian/install.sh @@ -8,8 +8,17 @@ cd "$(dirname "$0")" . ./resources/colors.sh . ./resources/environment.sh +#Git Credentials +printf "Git email: " +read GIT_EMAIL +printf "Git password/token: " +stty -echo +read GIT_PASSWORD +stty echo +printf "\n" + # removes the cd img from the /etc/apt/sources.list file (not needed after base install) -sed -i '/cdrom:/d' /etc/apt/sources.list +...sed -i '/cdrom:/d' /etc/apt/sources.list #Update to latest packages verbose "Update installed packages"