fgerlits commented on code in PR #1961:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1961#discussion_r2042078426
##########
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:
We could add `--noconfirm` to the command line instead of hard-coding this.
Someone might want to do `--run-configuration` in interactive mode.
--
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]