From 751f36e537cea2d7aec67e23ab59fb2dec05ef35 Mon Sep 17 00:00:00 2001 From: steveokard Date: Thu, 3 Jun 2021 01:09:13 -0400 Subject: [PATCH] fixed fi --- udeps.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/udeps.sh b/udeps.sh index c6d3a0d..4e1ff10 100755 --- a/udeps.sh +++ b/udeps.sh @@ -2,7 +2,8 @@ #These are the programs I expect to find on any install echo "installing base dependencies" -sudo apt-get -my install git \ +sudo apt-get -my install \ + git \ stow \ etckeeper \ tmux \ @@ -19,14 +20,14 @@ sudo apt-get -my install git \ ripgrep \ fd-find -read -n1 -p $'Does this system need ssh access?\n' REPLY +read -n1 -p $'Does this system need a ssh server?\n' REPLY if [[ $REPLY == [Yy] ]]; then sudo apt-get install openssh-server fi read -n1 -p $'\nDoes this system have a GUI?\n' REPLY if [[ $REPLY == [Yy] ]]; then sudo apt-get install synaptic - # else - # sudo apt-get install emacs-nox - # fi + else + sudo apt-get install emacs-nox + fi