Skip to content

Commit c6207d8

Browse files
committed
Fix interactive install-pkg command
1 parent b0eff0b commit c6207d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StaticPHP/Command/InstallPackageCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function configure(): void
3434
public function handle(): int
3535
{
3636
ApplicationContext::set('elephant', true);
37-
$installer = new PackageInstaller([...$this->input->getOptions(), 'dl-prefer-binary' => true], false);
37+
$installer = new PackageInstaller([...$this->input->getOptions(), 'dl-prefer-binary' => true], true);
3838
$installer->addInstallPackage($this->input->getArgument('package'));
3939
$installer->run(true);
4040
return static::SUCCESS;

0 commit comments

Comments
 (0)