This is an automated email from the ASF dual-hosted git repository.

fgerlits pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git

commit 692cf000223378979455832bc293a716405e4cba
Author: Gabor Gyimesi <[email protected]>
AuthorDate: Mon Apr 4 11:30:27 2022 +0200

    MINIFICPP-1793 Fix GCP toggling in bootstrap.sh
    
    Signed-off-by: Ferenc Gerlits <[email protected]>
    
    This closes #1295
---
 CMakeLists.txt     | 1 +
 bstrp_functions.sh | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 99ebfd10e..cb4339e92 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -116,6 +116,7 @@ option(ENABLE_OPENWSMAN "Enables the Openwsman extensions." 
OFF)
 option(ENABLE_AZURE "Enables Azure support." OFF)
 option(ENABLE_ENCRYPT_CONFIG "Enables build of encrypt-config binary." ON)
 option(ENABLE_SPLUNK "Enable Splunk support" OFF)
+option(ENABLE_GCP "Enable Google Cloud support" OFF)
 option(DOCKER_BUILD_ONLY "Disables all targets except docker build scripts. 
Ideal for systems without an up-to-date compiler." OFF)
 option(ENABLE_KUBERNETES "Enables the Kubernetes extensions." OFF)
 option(ENABLE_TEST_PROCESSORS "Enables test processors" OFF)
diff --git a/bstrp_functions.sh b/bstrp_functions.sh
index 501ddc39c..dca46d7d7 100755
--- a/bstrp_functions.sh
+++ b/bstrp_functions.sh
@@ -450,7 +450,7 @@ read_feature_options(){
     z) ToggleFeature NANOFI_ENABLED ;;
     aa) ToggleFeature SPLUNK_ENABLED ;;
     ab) ToggleFeature KUBERNETES_ENABLED ;;
-    ac) ToogleFeature GCP_ENABLED ;;
+    ac) ToggleFeature GCP_ENABLED ;;
     1) ToggleFeature TESTS_ENABLED ;;
     2) EnableAllFeatures ;;
     3) ToggleFeature JNI_ENABLED;;

Reply via email to