fix the end...

This commit is contained in:
David Young
2026-04-10 14:31:42 -06:00
parent a2ffbb9380
commit 6cc1a2ecbb
2 changed files with 3 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ ask_user_proceed() {
echo "Warning: could not determine installed version of $app."
echo "compile.conf specifies version $latest."
read -rp "Compile and install $app anyway? [y/N] " response
read -rp "Compile and install $app anyway? [y/N] " response </dev/tty
[[ "$response" =~ ^[yY] ]]
}
@@ -252,7 +252,7 @@ process_app() {
if [ -z "$version" ]; then
echo " Warning: no version specified in compile.conf for $app."
read -rp " Compile and install $app anyway? [y/N] " response
read -rp " Compile and install $app anyway? [y/N] " response </dev/tty
if [[ ! "$response" =~ ^[yY] ]]; then
echo " Skipping $app."
return