aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-fetch.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-02-11 14:23:07 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-02-14 10:57:58 +0300
commitf01eb45f5b61d9396a5d433c8cf1411286af6eba (patch)
tree22272da2633906313cfb26cdb9f74b2e115d3d43 /bpkg/rep-fetch.cxx
parentd1a894f8f862f36c40e6d21c3c1e1662e731a82d (diff)
Add support for reflect clause in tests package manifest value
Diffstat (limited to 'bpkg/rep-fetch.cxx')
-rw-r--r--bpkg/rep-fetch.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/bpkg/rep-fetch.cxx b/bpkg/rep-fetch.cxx
index 69ddfd1..e232d24 100644
--- a/bpkg/rep-fetch.cxx
+++ b/bpkg/rep-fetch.cxx
@@ -1604,7 +1604,11 @@ namespace bpkg
<< package_string (p->id.name, p->version);
}
- dependency_alternative da;
+ dependency_alternative da (nullopt /* enable */,
+ td.reflect,
+ nullopt /* prefer */,
+ nullopt /* accept */,
+ nullopt /* require */);
da.push_back (
dependency {p->id.name, version_constraint (p->version)});