Browse Source

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

Jordi Boggiano 11 years ago
parent
commit
efb41d467e
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/Composer/Util/Svn.php

+ 3 - 0
src/Composer/Util/Svn.php

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