From dabb08ff4a5fb6003762666cbefcb63ea5401ba4 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 29 May 2024 18:51:38 +0200 Subject: [PATCH] refactor: Remove unnecessary debug statement in ApplicationDeploymentJob.php --- app/Jobs/ApplicationDeploymentJob.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Jobs/ApplicationDeploymentJob.php b/app/Jobs/ApplicationDeploymentJob.php index 953e863a1..2009c6c7a 100644 --- a/app/Jobs/ApplicationDeploymentJob.php +++ b/app/Jobs/ApplicationDeploymentJob.php @@ -1819,7 +1819,6 @@ COPY ./nginx.conf /etc/nginx/conf.d/default.conf"); $build_command = "docker build --pull {$this->buildTarget} {$this->addHosts} --network host -f {$this->workdir}{$this->dockerfile_location} {$this->build_args} --progress plain -t {$this->production_image_name} {$this->workdir}"; } $base64_build_command = base64_encode($build_command); - ray($build_command); $this->execute_remote_command( [ executeInDocker($this->deployment_uuid, "echo '{$base64_build_command}' | base64 -d | tee /artifacts/build.sh > /dev/null"), "hidden" => true