mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
7230a2d399
The patch will make its way upstream eventually, but the phabricator maintainer is currently rejecting all contributions, so for the moment we'll have to just fix it locally.
14 lines
599 B
Diff
14 lines
599 B
Diff
diff --git a/src/toolset/workflow/ArcanistShellCompleteWorkflow.php b/src/toolset/workflow/ArcanistShellCompleteWorkflow.php
|
|
index 9c2fcf9a..307231c8 100644
|
|
--- a/src/toolset/workflow/ArcanistShellCompleteWorkflow.php
|
|
+++ b/src/toolset/workflow/ArcanistShellCompleteWorkflow.php
|
|
@@ -92,7 +92,7 @@ EOTEXT
|
|
$argv = $this->getArgument('argv');
|
|
|
|
$is_generate = $this->getArgument('generate');
|
|
- $is_shell = (bool)strlen($this->getArgument('shell'));
|
|
+ $is_shell = phutil_nonempty_string($this->getArgument('shell'));
|
|
$is_current = $this->getArgument('current');
|
|
|
|
if ($argv) {
|