aboutsummaryrefslogtreecommitdiff
path: root/bdep/sync.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-10 10:34:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-10 10:34:31 +0200
commit023f1a286b7dfe80eb80a9e6924e492cf6f3f80a (patch)
tree6accbb5ccee95ae5cb7ba9f186b2694c9797b2d9 /bdep/sync.hxx
parente3133aa9628858bcfe414f95731831b5962358c7 (diff)
Implement test, update, and clean commands
Diffstat (limited to 'bdep/sync.hxx')
-rw-r--r--bdep/sync.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/bdep/sync.hxx b/bdep/sync.hxx
index 0894c9b..1aebfe3 100644
--- a/bdep/sync.hxx
+++ b/bdep/sync.hxx
@@ -17,7 +17,9 @@ namespace bdep
// configuration variables to pass to bpkg-pkg-build (see bdep-init).
//
// If fetch is false, don't perform a (shallow) fetch of the project
- // repository. If yes is false, then don't suppress bpkg prompts.
+ // repository. If yes is false, then don't suppress bpkg prompts. If
+ // name_cfg is true then include the configuration name/directory into
+ // progress.
//
void
cmd_sync (const common_options&,
@@ -26,7 +28,8 @@ namespace bdep
const strings& pkg_args,
bool implicit,
bool fetch = true,
- bool yes = true);
+ bool yes = true,
+ bool name_cfg = false);
int
cmd_sync (cmd_sync_options&&, cli::group_scanner& args);