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 c533163 commit cb35555Copy full SHA for cb35555
src/Commands/InstallMenuBuilder.php
@@ -72,7 +72,7 @@ public function handle(Filesystem $filesystem)
72
73
$this->info('Dumping the autoloaded files and reloading all new files');
74
$composer = $this->findComposer();
75
- $process = new Process($composer . ' dump-autoload');
+ $process = Process::fromShellCommandline($composer . ' dump-autoload');
76
$process->setTimeout(null); // Setting timeout to null to prevent installation from stopping at a certain point in time
77
$process->setWorkingDirectory(base_path())->run();
78
0 commit comments