Skip to content

Commit 36b7d7c

Browse files
committed
fix: patch up dev flag on install
1 parent 67285f3 commit 36b7d7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function handle(): int
2424
}
2525

2626
$package = str_replace('@', ':', $package);
27-
$package = ($this->option('dev') === "true") ? "$package --dev" : $package;
27+
$package = ($this->option('dev') === true) ? "$package --dev" : $package;
2828

2929
$parsedPackages[] = $package;
3030
}

0 commit comments

Comments
 (0)