aboutsummaryrefslogtreecommitdiff
path: root/bdep/config.cli
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-08-18 15:00:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-08-18 18:19:11 +0300
commitba8e0b9f9866b47bc61b49323e4293ba90826e80 (patch)
tree9a5f12da8767291124b139ad4ecccf328f56b446 /bdep/config.cli
parentfeb93edb4820feceb602b1e081f782e2e0bc45bc (diff)
Add support for config-unlink sub-command
Diffstat (limited to 'bdep/config.cli')
-rw-r--r--bdep/config.cli16
1 files changed, 13 insertions, 3 deletions
diff --git a/bdep/config.cli b/bdep/config.cli
index a1cdba2..17a8f41 100644
--- a/bdep/config.cli
+++ b/bdep/config.cli
@@ -20,6 +20,7 @@ namespace bdep
\c{\b{bdep config add} \ \ \ [<options>] [<prj-spec>] [\b{@}<cfg-name>] <cfg-dir>\n
\b{bdep config create} [<options>] [<prj-spec>] [\b{@}<cfg-name>] <cfg-dir> [<cfg-args>]\n
\b{bdep config link} \ \ [<options>] [<prj-spec>] <cfg-spec> <cfg-spec>\n
+ \b{bdep config unlink} [<options>] [<prj-spec>] <cfg-spec> <cfg-spec>\n
\b{bdep config list} \ \ [<options>] [<prj-spec>] [<cfg-spec>...]\n
\b{bdep config move} \ \ [<options>] [<prj-spec>] <cfg-spec> <cfg-dir>\n
\b{bdep config rename} [<options>] [<prj-spec>] <cfg-spec> <cfg-name>\n
@@ -113,9 +114,17 @@ namespace bdep
\li|\cb{link}
- The \cb{link} subcommand links one build configuration with another
- by executing the \l{bpkg-cfg-link(1)} command. See
- \l{bpkg-cfg-create(1)} for background on linked configurations.|
+ The \cb{link} subcommand links the first specified build
+ configuration with the second by executing the \l{bpkg-cfg-link(1)}
+ command. See \l{bpkg-cfg-create(1)} for background on linked
+ configurations.|
+
+ \li|\cb{unlink}
+
+ The \cb{unlink} subcommand unlinks the first specified build
+ configuration from the second by executing the \l{bpkg-cfg-unlink(1)}
+ command. See \l{bpkg-cfg-create(1)} for background on linked
+ configurations.|
\li|\cb{list}
@@ -165,6 +174,7 @@ namespace bdep
bool add;
bool create;
bool link;
+ bool unlink;
bool list;
bool move;
bool rename;