mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-29 18:22:41 +01:00
Fix getting changed files in Git
This commit is contained in:
parent
10bcbf1f4b
commit
fc2cd63739
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ final class ArcanistGitAPI extends ArcanistRepositoryAPI {
|
||||||
|
|
||||||
public function getChangedFiles($since_commit) {
|
public function getChangedFiles($since_commit) {
|
||||||
list($stdout) = $this->execxLocal(
|
list($stdout) = $this->execxLocal(
|
||||||
'diff --name-status --raw %s',
|
'diff --raw %s',
|
||||||
$since_commit);
|
$since_commit);
|
||||||
return $this->parseGitStatus($stdout);
|
return $this->parseGitStatus($stdout);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue