diff options
Diffstat (limited to 'mod/module.cli')
-rw-r--r-- | mod/module.cli | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mod/module.cli b/mod/module.cli index 4c10826..ab72a9a 100644 --- a/mod/module.cli +++ b/mod/module.cli @@ -5,6 +5,7 @@ include <map>; include <regex>; include <libbpkg/manifest.hxx>; // repository_location +include <libbbot/manifest.hxx>; // interactive_mode include <web/xhtml/fragment.hxx>; @@ -842,9 +843,14 @@ namespace brep class build_task { - // Package repository canonical name (note: including pkg: type). + // Only consider packages from repositories with these canonical names + // (note: including pkg: type). // vector<string> repository | r; + + // Only consider tenants with this interactive build mode. + // + bbot::interactive_mode interactive = bbot::interactive_mode::both; }; class build_result |