Still did not get it right
parent
f24164dc16
commit
8ab60b7030
|
@ -180,7 +180,7 @@ class HgDriver implements VcsDriverInterface
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
exec(sprintf('hg identify %s', escapeshellarg($url)), null, $exit);
|
exec(sprintf('hg identify %s', escapeshellarg($url)), $ignored, $exit);
|
||||||
return $exit == 0;
|
return $exit == 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -178,7 +178,7 @@ class SvnDriver implements VcsDriverInterface
|
||||||
return false;
|
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;
|
return $exit == 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue