Skip to content

Commit

Permalink
fix: resolve extra Box options (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogermani87 authored Nov 7, 2024
1 parent 3987383 commit f1d8104
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(
[$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 f1d8104

Please sign in to comment.