summaryrefslogtreecommitdiffstats
path: root/bin/pull-all
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pull-all')
-rwxr-xr-xbin/pull-all16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/pull-all b/bin/pull-all
deleted file mode 100755
index 728a0e5..0000000
--- a/bin/pull-all
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env perl
-my $all = shift;
-
-@ARGV = "REPOSITORIES";
-@ARGV = "etc/REPOSITORIES" if -e "etc/REPOSITORIES";
-
-while (<>) {
- s/^-/*/ if $all;
-
- next unless my ($url) = /^\* (.*)/;
- next if $ENV{PULL_ALL_SKIP} && $url =~ $ENV{PULL_ALL_SKIP};
-
- print "Pulling from $url...\n";
- system("darcs pull --no-set-default $url");
-}
-