mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Mark the wildcard argument to "arc liberate" as a path argument for shell completion
Summary: This is a path argument, and shell completion should suggest tabs. Test Plan: Typed "arc liberate s<tab>", got path suggestions. Differential Revision: https://secure.phabricator.com/D21292
This commit is contained in:
parent
fce72b9c89
commit
c76cfc8c82
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ EOTEXT
|
||||||
->setHelp(
|
->setHelp(
|
||||||
pht('Perform a clean rebuild, ignoring caches. Thorough, but slow.')),
|
pht('Perform a clean rebuild, ignoring caches. Thorough, but slow.')),
|
||||||
$this->newWorkflowArgument('argv')
|
$this->newWorkflowArgument('argv')
|
||||||
->setWildcard(true),
|
->setWildcard(true)
|
||||||
|
->setIsPathArgument(true),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue