aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-12-25 01:24:08 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-12-25 08:46:10 +0300
commit0af5fcda34e31a932d2aaa5502cf8127f677751a (patch)
treeb3981ed3370dc60325917d678691b2da465df513
parenta65878c858fe1c4043e3e4b647fd6263d830b3f5 (diff)
Adapt to repository location interface change
-rw-r--r--libbbot/manifest.cxx5
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)
{