Skip to content

Commit

Permalink
Merge pull request #310 from laravel-zero/feat/issue-309
Browse files Browse the repository at this point in the history
Encloses build command arguments with double quotes.
  • Loading branch information
nunomaduro committed Feb 11, 2019
2 parents 4bb23e9 + 1b90614 commit f6214af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/BuildCommand.php
Expand Up @@ -93,7 +93,7 @@ private function compile(string $name): BuildCommand
}

$process = new Process(
'./box compile'.' --working-dir='.base_path().' --config='.base_path('box.json'),
'./box compile'.' --working-dir="'.base_path().'" --config="'.base_path('box.json').'"',
dirname(dirname(__DIR__)).'/bin',
null,
null,
Expand Down

0 comments on commit f6214af

Please sign in to comment.