From 193cfeda826a03c674562d4cb58ffc8721facd0d Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 7 Apr 2024 10:29:55 +0200 Subject: [PATCH] Fix more bugs --- scripts/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 1d7d233..c0ba323 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,15 +2,15 @@ cloneAndMake() { if [ -z "$password" ]; then - read -s -p "Enter your password: " password - echo + read -s -p "Enter your password: " password + echo fi echo "Downloading '${1}'" git clone "$2" if [ -e "$1/Makefile" ]; then - (cd "$1" || { echo "Couldn't cd into '$1'." 1>&2 && exit 1; }; echo "$password" | sudo make install) + (cd "$1" || { echo "Couldn't cd into '$1'." 1>&2 && exit 1; }; echo "$password" | sudo make install) fi }