We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ddb8b commit 68fc543Copy full SHA for 68fc543
VERSION
@@ -1 +1 @@
1
-2.0.0
+2.0.1
src/Console.php
@@ -216,7 +216,9 @@ public function mapBoolean($in): bool|null
216
217
public function exec(string $cmd, ?\Closure $output = null, bool $showCmd = true): int
218
{
219
- $showCmd || $this->writeln('>> ' . $cmd);
+ if ($showCmd) {
220
+ $this->writeln('>> ' . $cmd);
221
+ }
222
$descriptorspec = [
223
0 => ["pipe", "r"], // stdin
224
1 => ["pipe", "w"], // stdout
0 commit comments