Skip to content

Commit

Permalink
Merge pull request #432 from CupOfTea696/patch-1
Browse files Browse the repository at this point in the history
`BuildCommand::run()` does not return exit code
  • Loading branch information
owenvoke committed Jan 11, 2021
2 parents 5f4d31a + ffca4b4 commit f54e1f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/BuildCommand.php
Expand Up @@ -76,7 +76,7 @@ public function handle()
*/
public function run(InputInterface $input, OutputInterface $output)
{
parent::run($input, $this->originalOutput = $output);
return parent::run($input, $this->originalOutput = $output);
}

/**
Expand Down

0 comments on commit f54e1f8

Please sign in to comment.