diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-02-08 19:41:14 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-02-08 19:41:14 +0300 |
commit | 771b28b75cccab373285f4ce1d08960003f46ca2 (patch) | |
tree | db46daca8eb895ff24886cf144bc7be0c04ee4ba | |
parent | 0af5fcda34e31a932d2aaa5502cf8127f677751a (diff) |
Adapt to making repository_url(string) ctor explicit
-rw-r--r-- | libbbot/manifest.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbbot/manifest.cxx b/libbbot/manifest.cxx index fe6f419..2088e12 100644 --- a/libbbot/manifest.cxx +++ b/libbbot/manifest.cxx @@ -496,7 +496,8 @@ namespace bbot // @@ 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); + repository = repository_location (repository_url (v), + repository_type::bpkg); } catch (const invalid_argument& e) { |