mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-09 16:32:39 +01:00
Write to STDERR instead of php://stderr
Summary: See D3661. Test Plan: $ arc diff --raw Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T1261 Differential Revision: https://secure.phabricator.com/D3662
This commit is contained in:
parent
d0ed67ab1d
commit
da74127fec
4 changed files with 4 additions and 6 deletions
|
@ -522,9 +522,7 @@ function arcanist_load_libraries(
|
|||
if ($must_load) {
|
||||
throw new ArcanistUsageException($error);
|
||||
} else {
|
||||
file_put_contents(
|
||||
'php://stderr',
|
||||
phutil_console_wrap('WARNING: '.$error."\n\n"));
|
||||
fwrite(STDERR, phutil_console_wrap('WARNING: '.$error."\n\n"));
|
||||
}
|
||||
} catch (PhutilLibraryConflictException $ex) {
|
||||
if ($ex->getLibrary() != 'arcanist') {
|
||||
|
|
|
@ -48,7 +48,7 @@ final class ArcanistBaseCommitParser {
|
|||
|
||||
private function log($message) {
|
||||
if ($this->verbose) {
|
||||
file_put_contents('php://stderr', $message."\n");
|
||||
fwrite(STDERR, $message."\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1097,7 +1097,7 @@ abstract class ArcanistBaseWorkflow {
|
|||
* @return void
|
||||
*/
|
||||
protected function writeStatusMessage($msg) {
|
||||
file_put_contents('php://stderr', $msg);
|
||||
fwrite(STDERR, $msg);
|
||||
}
|
||||
|
||||
protected function isHistoryImmutable() {
|
||||
|
|
|
@ -775,7 +775,7 @@ EOTEXT
|
|||
if ($is_raw) {
|
||||
|
||||
if ($this->getArgument('raw')) {
|
||||
file_put_contents('php://stderr', "Reading diff from stdin...\n");
|
||||
fwrite(STDERR, "Reading diff from stdin...\n");
|
||||
$raw_diff = file_get_contents('php://stdin');
|
||||
} else if ($this->getArgument('raw-command')) {
|
||||
list($raw_diff) = execx($this->getArgument('raw-command'));
|
||||
|
|
Loading…
Reference in a new issue