Repository: nifi-minifi-cpp Updated Branches: refs/heads/master 5f3b3973e -> bc6d2a120
MINIFICPP-523 Fixes bootstrap continue with plan prompt This closes #351. Signed-off-by: Marc Parisi <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/commit/bc6d2a12 Tree: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/tree/bc6d2a12 Diff: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/diff/bc6d2a12 Branch: refs/heads/master Commit: bc6d2a12098a4c52b6e590b291fe2d7c49b85ae5 Parents: 5f3b397 Author: Kevin Doran <[email protected]> Authored: Sun Jun 3 20:55:30 2018 -0400 Committer: Marc Parisi <[email protected]> Committed: Mon Jun 4 09:02:44 2018 -0400 ---------------------------------------------------------------------- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/bc6d2a12/bootstrap.sh ---------------------------------------------------------------------- diff --git a/bootstrap.sh b/bootstrap.sh index d916f8f..d5fb8ec 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -531,7 +531,7 @@ build_cmake_command(){ if [ ! "$NO_PROMPT" = "true" ]; then read -p "Command will be '${CMAKE_BUILD_COMMAND}', run this? [ Y/N ] " continue_with_plan fi - if [ "$overwrite" = "N" ] || [ "$overwrite" = "n" ]; then + if [ "$continue_with_plan" = "N" ] || [ "$continue_with_plan" = "n" ]; then echo "Exiting ...." exit fi
