summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crawl.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl.pl b/crawl.pl
index 8236943..d0d911b 100644
--- a/crawl.pl
+++ b/crawl.pl
@@ -11,6 +11,7 @@ GetOptions(
'profiles' => \my $profiles,
'repo' => \my $repo,
'graph' => \my $graph,
+ 'network' => \my $network,
'conf=s' => \my $conf,
);
@@ -27,4 +28,5 @@ my $gh = githubexplorer->new(
$gh->deploy if $deploy;
$gh->harvest_profiles if $profiles;
$gh->harvest_repo if $repo;
+$gh->graph_repo if $network;
$gh->gen_graph if $graph;