Skip to content

Commit

Permalink
Update BuildCommand.php
Browse files Browse the repository at this point in the history
Fixed missing parentesis
  • Loading branch information
marcogermani87 authored Nov 7, 2024
1 parent fbac53c commit 3198045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private function compile(string $name): BuildCommand
$boxBinary = windows_os() ? '.\box.bat' : './box';

$process = new Process(
array_merge($boxBinary, 'compile', '--working-dir='.base_path(), '--config='.base_path('box.json')], $this->getExtraBoxOptions()),
array_merge([$boxBinary, 'compile', '--working-dir='.base_path(), '--config='.base_path('box.json')], $this->getExtraBoxOptions()),
dirname(__DIR__, 2).'/bin',
null,
null,
Expand Down

0 comments on commit 3198045

Please sign in to comment.