Skip to content

Commit

Permalink
Set environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon committed Sep 7, 2022
1 parent 7120dd2 commit c169f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BuildProcess/ExecuteBuildCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function __invoke()
foreach (Manifest::buildCommands($this->environment) as $command) {
Helpers::step('<comment>Running Command</comment>: '.$command);

$process = Process::fromShellCommandline($command, $this->appPath, null, null, null);
$process = Process::fromShellCommandline($command, $this->appPath, ['LARAVEL_VAPOR' => 1], null, null);

$process->mustRun(function ($type, $line) {
Helpers::write($line);
Expand Down

0 comments on commit c169f69

Please sign in to comment.