diff --git a/src/repository/api/ArcanistSubversionAPI.php b/src/repository/api/ArcanistSubversionAPI.php index 672cd13e..f247b238 100644 --- a/src/repository/api/ArcanistSubversionAPI.php +++ b/src/repository/api/ArcanistSubversionAPI.php @@ -494,10 +494,16 @@ EODIFF; } public function getChangedFiles($since_commit) { + $url = ''; + $match = null; + if (preg_match('/(.*)@(.*)/', $since_commit, $match)) { + list(, $url, $since_commit) = $match; + } // TODO: Handle paths with newlines. list($stdout) = $this->execxLocal( - '--xml diff --revision %s:HEAD --summarize', - $since_commit); + '--xml diff --revision %s:HEAD --summarize %s', + $since_commit, + $url); $xml = new SimpleXMLElement($stdout); $return = array(); diff --git a/src/workflow/ArcanistLintWorkflow.php b/src/workflow/ArcanistLintWorkflow.php index c1c1fc69..1f3cd213 100644 --- a/src/workflow/ArcanistLintWorkflow.php +++ b/src/workflow/ArcanistLintWorkflow.php @@ -195,7 +195,10 @@ EOTEXT $engine = newv($engine, array()); $this->engine = $engine; $engine->setWorkingCopy($working_copy); - $engine->setRepositoryVersion($this->getRepositoryVersion()); + + if ($use_cache) { + $engine->setRepositoryVersion($this->getRepositoryVersion()); + } $engine->setMinimumSeverity( $this->getArgument('severity', self::DEFAULT_SEVERITY));