We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7989027 commit 9274ac0Copy full SHA for 9274ac0
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Fixed
6
7
- Bug where ExpressionEngine CLI command proxy was not recognizing optional arguments
8
+- Bug where ExpressionEngine CLI command proxy would fail to handle interactive input
9
10
## [1.3.1] - 2024-04-24
11
src/Commands/EECliCommand.php
@@ -24,6 +24,7 @@ public function __construct()
24
}
25
26
$core = (new \Expressionengine\Coilpack\Bootstrap\LoadExpressionEngine)->cli()->bootstrap(app());
27
+ $GLOBALS['argv'] = array_slice($_SERVER['argv'], 1);
28
$this->cli = $core->runGlobal();
29
30
$this->setupCommand($_SERVER['argv'][2] ?? 'list');
0 commit comments