From 634d2f55c2a35605f1545c52a3fde843175e519a Mon Sep 17 00:00:00 2001 From: StephenC Date: Mon, 2 Oct 2023 00:40:23 -0400 Subject: [PATCH] Update init.sh added ddeps.sh as dependency install option --- init.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.sh b/init.sh index 94c7177..8d48379 100755 --- a/init.sh +++ b/init.sh @@ -3,10 +3,10 @@ echo -n "Which Linux flavor will we be installing programs for? (u/o/a)"; read -r answer case $answer in u) - bash udeps.sh + bash udeps.sh ;; o) - bash odeps.sh + bash odeps.sh ;; a) bash adeps.sh @@ -14,6 +14,9 @@ case $answer in f) bash fdeps.sh ;; + d) + bash ddeps.sh + ;; *) echo "Skipping installation of dependencies!" ;;