Skip to content

Commit c4d8c04

Browse files
authored
Set environment variable (#196)
1 parent 7120dd2 commit c4d8c04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BuildProcess/ExecuteBuildCommands.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __invoke()
2222
foreach (Manifest::buildCommands($this->environment) as $command) {
2323
Helpers::step('<comment>Running Command</comment>: '.$command);
2424

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

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

0 commit comments

Comments
 (0)