diff --git a/app/Console/Commands/Init.php b/app/Console/Commands/Init.php index 54addf921..6ff7e90db 100644 --- a/app/Console/Commands/Init.php +++ b/app/Console/Commands/Init.php @@ -35,7 +35,12 @@ public function handle() } $this->cleanup_in_progress_application_deployments(); $this->cleanup_stucked_helper_containers(); - setup_dynamic_configuration(); + + try { + setup_dynamic_configuration(); + } catch (\Throwable $e) { + echo "Could not setup dynamic configuration: {$e->getMessage()}\n"; + } $settings = InstanceSettings::get(); if (!is_null(env('AUTOUPDATE', null))) { diff --git a/config/sentry.php b/config/sentry.php index 43ac820bd..aecb822f0 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -7,7 +7,7 @@ // 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.158', + 'release' => '4.0.0-beta.159', // 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 5eb844939..bdc652e8f 100644 --- a/config/version.php +++ b/config/version.php @@ -1,3 +1,3 @@