summaryrefslogtreecommitdiff
path: root/crawl.pl
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-02-10 11:08:21 +0100
committerfranck cuny <franck@lumberjaph.net>2010-02-10 11:08:21 +0100
commit68cd6b70d8ce737ffa12bab2be4f6eaf6f1599a4 (patch)
tree2208dfd26b3837a098ba7f601069917d8d81951c /crawl.pl
parentprepare repos (diff)
parentupdate to create graph (diff)
downloadgithub-explorer-68cd6b70d8ce737ffa12bab2be4f6eaf6f1599a4.tar.gz
fix
Diffstat (limited to 'crawl.pl')
-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;