From b9f820cef4b92794899ede4c2ae4c51fb46777ba Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 11 Jan 2024 12:33:28 +0100 Subject: [PATCH] fix: save cmd output propely (merge) --- app/Traits/ExecuteRemoteCommand.php | 2 +- config/sentry.php | 2 +- config/version.php | 2 +- versions.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Traits/ExecuteRemoteCommand.php b/app/Traits/ExecuteRemoteCommand.php index 6c0dc5d03..10f50e251 100644 --- a/app/Traits/ExecuteRemoteCommand.php +++ b/app/Traits/ExecuteRemoteCommand.php @@ -59,7 +59,7 @@ trait ExecuteRemoteCommand $this->application_deployment_queue->save(); if ($this->save) { - $this->saved_outputs[$this->save] = Str::of($output)->trim(); + $this->saved_outputs[$this->save] .= Str::of($output)->trim(); } }); $this->application_deployment_queue->update([ diff --git a/config/sentry.php b/config/sentry.php index 4df15f841..c586dba82 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ return [ // The release version of your application // Example with dynamic git hash: trim(exec('git --git-dir ' . base_path('.git') . ' log --pretty="%h" -n1 HEAD')) - 'release' => '4.0.0-beta.186', + 'release' => '4.0.0-beta.187', // When left empty or `null` the Laravel environment will be used 'environment' => config('app.env'), diff --git a/config/version.php b/config/version.php index be52135e7..8dc7a5d2f 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@