Skip to content

Commit 6745f88

Browse files
authored
Fix hidden output on Windows
Fixes NativePHP/laravel#244
1 parent 3a9f93b commit 6745f88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public function handle(): void
2323

2424
$withoutInteraction = $this->option('no-interaction');
2525

26-
$this->callSilent('vendor:publish', ['--tag' => 'nativephp-provider']);
27-
$this->callSilent('vendor:publish', ['--tag' => 'nativephp-config']);
26+
$this->call('vendor:publish', ['--tag' => 'nativephp-provider']);
27+
$this->call('vendor:publish', ['--tag' => 'nativephp-config']);
2828

2929
$installer = $this->getInstaller($this->option('installer'), $withoutInteraction);
3030

0 commit comments

Comments
 (0)