diff --git a/10seconds_install b/10seconds_install index 02c54ec7..e67badb1 100644 --- a/10seconds_install +++ b/10seconds_install @@ -46,12 +46,12 @@ else echo echo "Continue anyway? (y/n)" read YN - if test $YN = "y" -o $YN = "Y"; then - # Continue - true - else + if test "$YN" = "n"; then # Stop exit 2 + else + # Continue + true fi fi