Co-authored-by: drugsosos <44712637+Drugsosos@users.noreply.github.com>
@ -173,8 +173,8 @@ function install_main(){
echo "Assuming yes"
else
echo "Continue? (y/n)"
read answer
read -r -s -n 1 answer
if [ "$answer" != "y" ]; then
if [[ $answer != "" ]]; then
echo "Aborting"
exit 1
fi