@cryptotaxi247 / netdata-1 / commits / c718bca80

netdata-uninstaller: improve input prompt with more descriptive guidance (#19855)

Ilya Mashchenko committed Mar 13, 2025 at 22:50 UTC c718bca80d5fe059b98a223c12df95fb60f12a57
1 file changed +1 -1
packaging/installer/netdata-uninstaller.sh
+1 -1
@@ -115,7 +115,7 @@ user_input() {
115 case "$yn" in
116 [Yy]*) return 0;;
117 [Nn]*) return 1;;
118 - *) echo "Please answer yes or no.";;
118 + *) echo "Please answer y[es] or n[o]";;
119 esac
120 done
121 fi