aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-uninstall.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-17 12:55:03 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2018-05-17 14:38:18 +0300
commit2ea3d11ac1d5b6069268709ca0125d2e90377d93 (patch)
tree47492a4ae07ad15cc4cf9395c37d662cd2b90771 /bpkg/pkg-uninstall.hxx
parentf5bd0385e1e91618655a124ff20e19c1a2acdae6 (diff)
Add support for --immediate|-i and --recursive|-r to pkg-(un)install
Diffstat (limited to 'bpkg/pkg-uninstall.hxx')
-rw-r--r--bpkg/pkg-uninstall.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/pkg-uninstall.hxx b/bpkg/pkg-uninstall.hxx
index c4359af..9e4d6a8 100644
--- a/bpkg/pkg-uninstall.hxx
+++ b/bpkg/pkg-uninstall.hxx
@@ -19,8 +19,8 @@ namespace bpkg
{
return pkg_command ("uninstall", o,
"" /* cmd_variant */,
- false /* recursive */,
- false /* immediate */,
+ o.recursive (),
+ o.immediate (),
args);
}
}