1
0
Fork 0

Skip redirect to URL lines in svn output, fixes #2338

pull/2347/head
Jordi Boggiano 2013-10-18 11:45:05 +02:00
parent 08243ce2e3
commit efb41d467e
1 changed files with 3 additions and 0 deletions

View File

@ -92,6 +92,9 @@ class Svn
if ($type !== 'out') { if ($type !== 'out') {
return; return;
} }
if ('Redirecting to URL ' === substr($buffer, 0, 19)) {
return;
}
$output .= $buffer; $output .= $buffer;
if ($verbose) { if ($verbose) {
$io->write($buffer, false); $io->write($buffer, false);