0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-02 20:48:06 +00:00

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

This commit is contained in:
Ilya Mashchenko 2025-03-13 22:50:26 +02:00 committed by GitHub
parent 369635d2f7
commit c718bca80d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,7 +115,7 @@ user_input() {
case "$yn" in
[Yy]*) return 0;;
[Nn]*) return 1;;
*) echo "Please answer yes or no.";;
*) echo "Please answer y[es] or n[o]";;
esac
done
fi