1
0
Fork 0

Still did not get it right

pull/154/head
Matthias Pigulla 2011-12-10 14:23:37 +01:00
parent f24164dc16
commit 8ab60b7030
2 changed files with 2 additions and 2 deletions

View File

@ -180,7 +180,7 @@ class HgDriver implements VcsDriverInterface
return false;
}
exec(sprintf('hg identify %s', escapeshellarg($url)), null, $exit);
exec(sprintf('hg identify %s', escapeshellarg($url)), $ignored, $exit);
return $exit == 0;
}
}

View File

@ -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)), $ignored, $exit);
return $exit == 0;
}
}