mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Don't run background process with raw diff source
Test Plan: $ arc diff Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3553
This commit is contained in:
parent
0a6be45f29
commit
b22e94d555
1 changed files with 4 additions and 1 deletions
|
@ -377,7 +377,10 @@ EOTEXT
|
|||
|
||||
$this->runDiffSetupBasics();
|
||||
|
||||
$background = $this->getArgument('background', !phutil_is_windows());
|
||||
$background = $this->getArgument('background', true);
|
||||
if ($this->isRawDiffSource() || phutil_is_windows()) {
|
||||
$background = false;
|
||||
}
|
||||
|
||||
if ($background) {
|
||||
$argv = $this->getPassedArguments();
|
||||
|
|
Loading…
Reference in a new issue