Update init.sh
added ddeps.sh as dependency install option
This commit is contained in:
parent
acfc64974c
commit
634d2f55c2
1 changed files with 5 additions and 2 deletions
7
init.sh
7
init.sh
|
@ -3,10 +3,10 @@
|
||||||
echo -n "Which Linux flavor will we be installing programs for? (u/o/a)"; read -r answer
|
echo -n "Which Linux flavor will we be installing programs for? (u/o/a)"; read -r answer
|
||||||
case $answer in
|
case $answer in
|
||||||
u)
|
u)
|
||||||
bash udeps.sh
|
bash udeps.sh
|
||||||
;;
|
;;
|
||||||
o)
|
o)
|
||||||
bash odeps.sh
|
bash odeps.sh
|
||||||
;;
|
;;
|
||||||
a)
|
a)
|
||||||
bash adeps.sh
|
bash adeps.sh
|
||||||
|
@ -14,6 +14,9 @@ case $answer in
|
||||||
f)
|
f)
|
||||||
bash fdeps.sh
|
bash fdeps.sh
|
||||||
;;
|
;;
|
||||||
|
d)
|
||||||
|
bash ddeps.sh
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Skipping installation of dependencies!"
|
echo "Skipping installation of dependencies!"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue