Update default.inc

This commit is contained in:
2019-02-04 00:25:48 -06:00
parent b6918e0ebe
commit d19aeb6c45

View File

@@ -110,7 +110,14 @@ detect_os () {
echo "${OSinfo[@]}"
}
ENTER2CONTINUE(){
echo "Press ENTER to continue"
while read answer; do
if [ -z "$answer" ]; then
break
fi
done
}