Skip to content

Commit f1d8104

Browse files
fix: resolve extra Box options (#506)
1 parent 3987383 commit f1d8104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/BuildCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ private function compile(string $name): BuildCommand
131131
$boxBinary = windows_os() ? '.\box.bat' : './box';
132132

133133
$process = new Process(
134-
[$boxBinary, 'compile', '--working-dir='.base_path(), '--config='.base_path('box.json')] + $this->getExtraBoxOptions(),
134+
array_merge([$boxBinary, 'compile', '--working-dir='.base_path(), '--config='.base_path('box.json')], $this->getExtraBoxOptions()),
135135
dirname(__DIR__, 2).'/bin',
136136
null,
137137
null,

0 commit comments

Comments
 (0)