Skip to content

Commit 68fc543

Browse files
committed
Release version: 2.0.1
1 parent 66ddb8b commit 68fc543

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

src/Console.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,9 @@ public function mapBoolean($in): bool|null
216216

217217
public function exec(string $cmd, ?\Closure $output = null, bool $showCmd = true): int
218218
{
219-
$showCmd || $this->writeln('>> ' . $cmd);
219+
if ($showCmd) {
220+
$this->writeln('>> ' . $cmd);
221+
}
220222
$descriptorspec = [
221223
0 => ["pipe", "r"], // stdin
222224
1 => ["pipe", "w"], // stdout

0 commit comments

Comments
 (0)