Fix more bugs
This commit is contained in:
parent
683750f577
commit
193cfeda82
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue