Merge pull request #1868 from bisbastuner/patch-1

Fix wrong condition when asking first
This commit is contained in:
Ilia
2023-03-21 21:00:24 +02:00
committed by GitHub

View File

@@ -87,7 +87,7 @@ fi
# Ask first
printf "Setup Webmin official repository? (y/N) "
read -r sslyn
if [ "$sslyn" != "y" ] || [ "$sslyn" = "Y" ]; then
if [ "$sslyn" != "y" ] && [ "$sslyn" != "Y" ]; then
exit
fi