aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-clean.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-05-11 14:41:12 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-05-11 16:01:16 +0300
commite035fbaf5e5ae862191dc3d9eb047ac0abba6dbb (patch)
treeafa96dfcbf0b8af174bf7c4ed171cd43a6a7dcb1 /bpkg/pkg-clean.hxx
parentca387611165403835655db1f3620ef8e65cb92b5 (diff)
Add support for recursive pkg-test
Diffstat (limited to 'bpkg/pkg-clean.hxx')
-rw-r--r--bpkg/pkg-clean.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/bpkg/pkg-clean.hxx b/bpkg/pkg-clean.hxx
index 3a8fcf1..363563e 100644
--- a/bpkg/pkg-clean.hxx
+++ b/bpkg/pkg-clean.hxx
@@ -16,7 +16,12 @@ namespace bpkg
inline int
pkg_clean (const pkg_clean_options& o, cli::scanner& args)
{
- return pkg_command ("clean", o, "", args);
+ return pkg_command ("clean",
+ o,
+ "" /* cmd_variant */,
+ false /* recursive */,
+ false /* immediate */,
+ args);
}
}