Skip to content

Commit

Permalink
Corrects error message for failed build command
Browse files Browse the repository at this point in the history
  • Loading branch information
spamoom committed May 18, 2020
1 parent 5727072 commit 7cb5ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Commands/DockerBuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ protected function callBuild(string $tag, string $service = null): bool
$process->wait();

if ($process->getExitCode() !== 0) {
$this->error("Unable to push all items to AWS, check the above output for reasons why.");
$this->error("Unable to build all images, check the above output for reasons why.");
return false;
}

Expand Down

0 comments on commit 7cb5ca2

Please sign in to comment.