redirect stderr
authorMichael Wallner <mike@php.net>
Thu, 28 May 2015 12:55:47 +0000 (14:55 +0200)
committerMichael Wallner <mike@php.net>
Thu, 28 May 2015 12:55:47 +0000 (14:55 +0200)
public/mirror.php

index 7c80fef26ec248fd34e3020f7e20d6a4689dfe0d..4203c9e1a24674b5286cc5ce434b7f25a2c729dd 100644 (file)
@@ -46,12 +46,12 @@ switch ($evt) {
                                $repo = $json->repository->full_name;
                                $path = $mirror . "/" . $repo;
                                if (is_dir($path) && chdir($path)) {
                                $repo = $json->repository->full_name;
                                $path = $mirror . "/" . $repo;
                                if (is_dir($path) && chdir($path)) {
-                                       passthru("git fetch -p", $rv);
+                                       passthru("git fetch -p 2>&1", $rv);
                                        if ($rv == 0) {
                                                $response->setResponseCode(200);
                                        }
                                } elseif (mkdir($path, 0755, true) && chdir($path)) {
                                        if ($rv == 0) {
                                                $response->setResponseCode(200);
                                        }
                                } elseif (mkdir($path, 0755, true) && chdir($path)) {
-                                       passthru("git clone --mirror " . escapeshellarg($repo) . " .", $rv);
+                                       passthru("git clone --mirror " . escapeshellarg($repo) . " . 2>&1", $rv);
                                        if ($rv == 0) {
                                                $response->setResponseCode(200);
                                        }
                                        if ($rv == 0) {
                                                $response->setResponseCode(200);
                                        }