Skip to content

Commit

Permalink
Merge pull request #7 from markhuot/fix-interactive-apply
Browse files Browse the repository at this point in the history
non-interactive on subprocess
  • Loading branch information
markhuot authored Dec 1, 2023
2 parents cdfb232 + 8fc77b9 commit de027c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ protected function craftMigrateAll()
protected function craftProjectConfigApply()
{
$craftExePath = getenv('CRAFT_EXE_PATH') ?: './craft';
$process = new Process([$craftExePath, 'project-config/apply', '--force']);
$process = new Process([$craftExePath, 'project-config/apply', '--force', '--interactive=0']);
$process->setTty(Process::isTtySupported());
$process->setTimeout(null);
$process->start();
Expand Down

0 comments on commit de027c9

Please sign in to comment.