summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'], ['']];
};