1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01:00

asukhachev's patch for 'arc amend' not being overeager.

This commit is contained in:
epriestley 2011-03-14 17:39:12 -07:00
parent 628de7d7a1
commit eb58ed1b8b

View file

@ -130,10 +130,16 @@ EOTEXT
$mark_workflow->run(); $mark_workflow->run();
} }
$remote_message = ArcanistDifferentialCommitMessage::newFromRawCorpus(
$message);
$remote_message->pullDataFromConduit($conduit);
if ($remote_message->getFieldValue('reviewedByGUIDs') ||
$remote_message->getFieldValue('reviewedByPHIDs')) {
echo phutil_console_wrap( echo phutil_console_wrap(
"You may now push this commit upstream, as appropriate (e.g. with ". "You may now push this commit upstream, as appropriate (e.g. with ".
"'git push', or 'git svn dcommit', or by printing and faxing it).\n"); "'git push', or 'git svn dcommit', or by printing and faxing it).\n");
} }
}
return 0; return 0;
} }