Update init.sh

added ddeps.sh as dependency install option
This commit is contained in:
Stefen Auris 2023-10-02 00:40:23 -04:00 committed by GitHub
parent acfc64974c
commit 634d2f55c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!"
;;