diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-12-25 01:24:08 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-12-25 08:46:10 +0300 |
commit | 0af5fcda34e31a932d2aaa5502cf8127f677751a (patch) | |
tree | b3981ed3370dc60325917d678691b2da465df513 | |
parent | a65878c858fe1c4043e3e4b647fd6263d830b3f5 (diff) |
Adapt to repository location interface change
-rw-r--r-- | libbbot/manifest.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbbot/manifest.cxx b/libbbot/manifest.cxx index db33021..fe6f419 100644 --- a/libbbot/manifest.cxx +++ b/libbbot/manifest.cxx @@ -493,7 +493,10 @@ namespace bbot // Call remote/absolute repository location constructor (throws // invalid_argument for relative location). // - repository = repository_location (move (v)); + // @@ We probably need another name/value pair for the repository + // type, that should be filled by bbot controller. + // + repository = repository_location (move (v), repository_type::bpkg); } catch (const invalid_argument& e) { |