Browse Source

forgot this when testing

Matthias Pigulla 13 years ago
parent
commit
f24164dc16
1 changed files with 1 additions and 1 deletions
  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;
     }
 }