fix(deployment): correct syntax for else statement in docker compose build command
This commit is contained in:
parent
cef9776128
commit
7a0954fa77
1 changed files with 1 additions and 1 deletions
|
|
@ -509,7 +509,7 @@ private function deploy_docker_compose_buildpack()
|
|||
}
|
||||
if ($this->force_rebuild) {
|
||||
$command .= " --project-name {$this->application->uuid} --project-directory {$this->workdir} -f {$this->workdir}{$this->docker_compose_location} build --pull --no-cache";
|
||||
else
|
||||
} else {
|
||||
$command .= " --project-name {$this->application->uuid} --project-directory {$this->workdir} -f {$this->workdir}{$this->docker_compose_location} build --pull";
|
||||
}
|
||||
$this->execute_remote_command(
|
||||
|
|
|
|||
Loading…
Reference in a new issue