summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-02-10 11:07:32 +0100
committerfranck cuny <franck@lumberjaph.net>2010-02-10 11:07:32 +0100
commit75578620f196399e683c81bcd3555a96a462afb0 (patch)
tree4ae590a159f19a9784b587ba36365a94554e0383
parentcheck error (diff)
downloadgithub-explorer-75578620f196399e683c81bcd3555a96a462afb0.tar.gz
add opt to create network
Diffstat (limited to '')
-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;