1
0
Fork 0

Remove useless curly braces around svn args

pull/7623/head
Jordi Boggiano 2018-09-05 00:00:25 +02:00
parent e80b560fa8
commit 95840a0ab9
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ class SvnDriver extends VcsDriver
$processExecutor = new ProcessExecutor($io);
$exit = $processExecutor->execute(
"svn info --non-interactive ".ProcessExecutor::escape('{'.$url.'}'),
"svn info --non-interactive ".ProcessExecutor::escape($url),
$ignoredOutput
);