Pārlūkot izejas kodu

forgot this when testing

Matthias Pigulla 13 gadi atpakaļ
vecāks
revīzija
f24164dc16
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/Composer/Repository/Vcs/SvnDriver.php

+ 1 - 1
src/Composer/Repository/Vcs/SvnDriver.php

@@ -178,7 +178,7 @@ class SvnDriver implements VcsDriverInterface
             return false;
         }
         
-        @exec(sprintf('svn info --non-interactive %s 2>/dev/null', escapeshellarg($url)), null, $exit);
+        exec(sprintf('svn info --non-interactive %s 2>/dev/null', escapeshellarg($url)), null, $exit);
         return $exit == 0;
     }
 }