summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-11-04 12:58:39 -0500
committerJesse Luehrs <doy@tozt.net>2014-11-04 12:58:39 -0500
commitc45f8f60da6bb32c355cd47c18e04a593e51a90e (patch)
tree19f31a3dfa463845210390bfa9fcc226bb788ac2
parent178a0175c5d021a713eae83dfc143bb2d886ec43 (diff)
downloadcrawl-mirrorer-master.tar.gz
crawl-mirrorer-master.zip
need to push to a different placeHEADmaster
-rw-r--r--mirror.psgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/mirror.psgi b/mirror.psgi
index 90d02fa..cec2d9f 100644
--- a/mirror.psgi
+++ b/mirror.psgi
@@ -7,6 +7,6 @@ use Plack::Request;
sub {
my $req = Plack::Request->new($_[0]);
system("git fetch --prune --tags");
- system("git push --mirror");
+ system("git push --mirror github");
return [200, ['Content-Type' => 'text/plain'], ['']];
};