mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Provide a better error message when an invalid ID is given to arc patch
Summary: Fixes T8937. Previously when running `arc patch D9999999999` or `arc export --revision 99999999` with a non-existent diff or revision ID you would get a rather unhelpful error message. Now you'll get a slightly more helpful error message: ``` $ arc patch D99999999 Exception Couldn't find a revision or diff that matches the given ID (Run with `--trace` for a full exception trace.) ``` Test Plan: Ran arc patch with a valid revision and saw it patch successfully. Ran again with an invalid revision, saw the error message. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley, yelirekim Maniphest Tasks: T8937 Differential Revision: https://secure.phabricator.com/D17325
This commit is contained in:
parent
ade25facfd
commit
224986af63
1 changed files with 8 additions and 0 deletions
|
@ -1196,6 +1196,14 @@ abstract class ArcanistWorkflow extends Phobject {
|
|||
$future = $conduit->callMethod('differential.querydiffs', $params);
|
||||
$diff = head($future->resolve());
|
||||
|
||||
if ($diff == null) {
|
||||
throw new Exception(
|
||||
phutil_console_wrap(
|
||||
pht("The diff or revision you specified is either invalid or you ".
|
||||
"don't have permission to view it."))
|
||||
);
|
||||
}
|
||||
|
||||
$changes = array();
|
||||
foreach ($diff['changes'] as $changedict) {
|
||||
$changes[] = ArcanistDiffChange::newFromDictionary($changedict);
|
||||
|
|
Loading…
Reference in a new issue