This is an automated email from the ASF dual-hosted git repository.
phrocker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
The following commit(s) were added to refs/heads/master by this push:
new efece6f MINIFICPP-880: Change menu item
efece6f is described below
commit efece6fecce0f8de9ca2c82175bd7df0cf3b720d
Author: Marc Parisi <[email protected]>
AuthorDate: Fri May 24 12:01:42 2019 -0400
MINIFICPP-880: Change menu item
This closes #570.
Signed-off-by: Marc Parisi <[email protected]>
---
bstrp_functions.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bstrp_functions.sh b/bstrp_functions.sh
index 1f194d5..da226d7 100755
--- a/bstrp_functions.sh
+++ b/bstrp_functions.sh
@@ -280,7 +280,7 @@ show_supported_features() {
read_feature_options(){
local choice
- read -p "Enter choice [ A - T or 1-4 ] " choice
+ read -p "Enter choice [ A - V or 1-4 ] " choice
choice=$(echo ${choice} | tr '[:upper:]' '[:lower:]')
case $choice in
a) ToggleFeature ROCKSDB_ENABLED ;;
@@ -321,7 +321,7 @@ read_feature_options(){
fi
;;
q) exit 0;;
- *) echo -e "${RED}Please enter an option A-T or 1-4...${NO_COLOR}" &&
sleep 2
+ *) echo -e "${RED}Please enter an option A-V or 1-4...${NO_COLOR}" &&
sleep 2
esac
}