lordgamez commented on code in PR #1961:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1961#discussion_r2042116727
##########
bootstrap/main.py:
##########
@@ -33,8 +33,10 @@
help="Skips the installation of the default
compiler")
parser.add_argument('--noninteractive', action="store_true",
default=False,
help="Initiates the one click build")
+ parser.add_argument('--run-configuration', action="store_true",
default=False,
+ help="Runs configuration")
args = parser.parse_args()
- no_confirm = args.noconfirm or args.noninteractive
+ no_confirm = args.noconfirm or args.noninteractive or
args.run_configuration
Review Comment:
Updated in
https://github.com/apache/nifi-minifi-cpp/pull/1961/commits/9076a8fccca89f2e3ead4fe2bf9e865178fc2077
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]