mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-11 15:21:03 +01:00
Show "Fnnn" number in "arc upload"
Summary: We don't show the "Fnnn" number, but should. Test Plan: ```$ arc upload README --conduit-uri=http://local.aphront.com:8080/ Uploading 'README'... F121 README: http://local.aphront.com:8080/file/data/fnu76irnwftin4akjpxv/PHID-FILE-yrjeblelwq6rv5a5gjko/README Done.``` Reviewers: phleet, btrahan, vrana Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D3023
This commit is contained in:
parent
cf745ef2bf
commit
1e8add9583
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,8 @@ EOTEXT
|
|||
$results[$path] = $info;
|
||||
|
||||
if (!$this->getJSON()) {
|
||||
echo " {$name}: ".$info['uri']."\n\n";
|
||||
$id = $info['id'];
|
||||
echo " F{$id} {$name}: ".$info['uri']."\n\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue