Skip to content
Snippets Groups Projects
Commit c90d30a8 authored by Mathieu Courtois's avatar Mathieu Courtois
Browse files

[#34305] change default

parent 7c7c6b01
No related branches found
No related tags found
No related merge requests found
...@@ -138,10 +138,10 @@ def run_ctest_minimal(repopath): ...@@ -138,10 +138,10 @@ def run_ctest_minimal(repopath):
logger.info("NB: This version will be used: %s", run_ctest) logger.info("NB: This version will be used: %s", run_ctest)
try: try:
answ = input("Do you want to continue (y/[n], 'Ctrl+C' to abort push) ? ") answ = input("Do you want to continue ([y]/n, 'Ctrl+C' to abort push) ? ")
except KeyboardInterrupt: except KeyboardInterrupt:
return NOOK return NOOK
if answ.lower() not in ("y", "o"): if answ.lower() == "n":
logger.info("run_ctest skipped.") logger.info("run_ctest skipped.")
return OK return OK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment