diff options
-rw-r--r-- | bdep/config.cxx | 2 | ||||
-rw-r--r-- | bdep/sync.cxx | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/bdep/config.cxx b/bdep/config.cxx index d7a8350..765032b 100644 --- a/bdep/config.cxx +++ b/bdep/config.cxx @@ -496,7 +496,7 @@ namespace bdep dr << " @" << *name; if (type != "target") - dr << " --config-type " << type; + dr << " --type " << type; dr << (def ? " --default" : " --no-default"); dr << (fwd ? " --forward" : " --no-forward"); diff --git a/bdep/sync.cxx b/bdep/sync.cxx index 28bd0ea..6f9670a 100644 --- a/bdep/sync.cxx +++ b/bdep/sync.cxx @@ -678,13 +678,12 @@ namespace bdep // dr << '\n' << "creating configuration of " << dep_type << " type in " - << dep_dir << '\n' - << "and associate it with projects:" << '\n'; + << dep_dir << " and associating it with project(s):" << '\n'; for (const dir_path& d: dpt_prjs) dr << " " << d << '\n'; - dr << "as if by executing commands:" << '\n'; + dr << "as if by executing command(s):" << '\n'; dr << " "; cmd_config_create_print (dr, |