1
0
Fork 0
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:
vrana 2012-09-25 17:57:01 -07:00
parent 0a6be45f29
commit b22e94d555

View file

@ -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();