aboutsummaryrefslogtreecommitdiff
path: root/bpkg/bpkg.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-22 13:41:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-22 13:41:54 +0200
commit738050f2a71b2f0d094a692cc48c94653b82287f (patch)
tree874b79e5017be0aefde4f9427ecf6fc95cbe36be /bpkg/bpkg.cxx
parent221f0250fcd7cba4fa4b5e4fd6c0d410eb6e5811 (diff)
Implement rep-fetch command
Diffstat (limited to 'bpkg/bpkg.cxx')
-rw-r--r--bpkg/bpkg.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/bpkg/bpkg.cxx b/bpkg/bpkg.cxx
index c84a1f2..ef74144 100644
--- a/bpkg/bpkg.cxx
+++ b/bpkg/bpkg.cxx
@@ -2,11 +2,11 @@
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#include <cassert>
#include <iostream>
#include <exception>
#include <bpkg/types>
+#include <bpkg/utility>
#include <bpkg/diagnostics>
#include <bpkg/bpkg-options>
@@ -28,6 +28,7 @@
#include <bpkg/cfg-create>
#include <bpkg/rep-add>
+#include <bpkg/rep-fetch>
#include <bpkg/rep-create>
using namespace std;
@@ -197,6 +198,7 @@ try
#define REP_COMMAND(CMD) ANY_COMMAND(rep, CMD)
REP_COMMAND (add);
+ REP_COMMAND (fetch);
REP_COMMAND (create);
// @@ Would be nice to check that args doesn't contain any junk left.