diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-20 10:55:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-20 10:55:38 +0200 |
commit | 5c5a60a02ba1ddcb6782a938f3c892cda979d8fe (patch) | |
tree | ecfcfa99aedc73ead29a4e16025e427b66c912ae | |
parent | 09a80f013841e294301e2a174622264b2527cd40 (diff) |
Fix cli test verbosity
-rw-r--r-- | build2/cli/module.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/build2/cli/module.cxx b/build2/cli/module.cxx index d6f99ba..e604bcf 100644 --- a/build2/cli/module.cxx +++ b/build2/cli/module.cxx @@ -99,10 +99,8 @@ namespace build2 { const char* args[] = {cli.string ().c_str (), "--version", nullptr}; - if (verb >= 2) + if (verb >= 3) print_process (args); - else if (verb) - text << "test " << cli; string ver; try |