You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ph...@apache.org on 2019/02/08 14:01:59 UTC

[nifi-minifi-cpp] branch master updated: MINIFICPP-729: Remove duplicate bustache install line

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 40da0ca  MINIFICPP-729: Remove duplicate bustache install line
40da0ca is described below

commit 40da0cae52f721bce01dc8f29f0094f9cbc34a46
Author: Marc Parisi <ph...@apache.org>
AuthorDate: Tue Feb 5 19:19:50 2019 -0500

    MINIFICPP-729: Remove duplicate bustache install line
    
    This closes #480.
    
    Approved by Arpad on GH.
    
    Signed-off-by: Marc Parisi <ph...@apache.org>
---
 bstrp_functions.sh | 2 --
 1 file changed, 2 deletions(-)

diff --git a/bstrp_functions.sh b/bstrp_functions.sh
index 9181511..c4d6e6c 100755
--- a/bstrp_functions.sh
+++ b/bstrp_functions.sh
@@ -256,7 +256,6 @@ show_supported_features() {
   echo "K. Bustache Support ............$(print_feature_status BUSTACHE_ENABLED)"
   echo "L. MQTT Support ................$(print_feature_status MQTT_ENABLED)"
   echo "M. SQLite Support ..............$(print_feature_status SQLITE_ENABLED)"
-  echo "N. Bustache Support ............$(print_feature_status BUSTACHE_ENABLED)"
   echo "****************************************"
   echo "            Build Options."
   echo "****************************************"
@@ -289,7 +288,6 @@ read_feature_options(){
     k) ToggleFeature BUSTACHE_ENABLED ;;
     l) ToggleFeature MQTT_ENABLED ;;
     m) ToggleFeature SQLLITE_ENABLED ;;
-    n) ToggleFeature BUSTACHE_ENABLED ;;
     1) ToggleFeature TESTS_DISABLED ;;
     2) EnableAllFeatures ;;
     p) FEATURES_SELECTED="true" ;;