From d0ee05326985c2082569f61eb89f50986b55939b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20P=C3=B6hls?= Date: Tue, 7 May 2024 10:38:29 +0200 Subject: [PATCH] load env-specific .env file last --- packages/core/src/bootstrappers/load-environment-variables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/bootstrappers/load-environment-variables.ts b/packages/core/src/bootstrappers/load-environment-variables.ts index 28da3f5c..f0748b51 100644 --- a/packages/core/src/bootstrappers/load-environment-variables.ts +++ b/packages/core/src/bootstrappers/load-environment-variables.ts @@ -31,8 +31,8 @@ export class LoadEnvironmentVariables implements Bootstrapper { * in case the environment file does not exist, an error will be thrown. */ async loadEnvironment (): Promise { - await this.loadSpecificEnvironmentFile() await this.loadDefaultEnvironmentFile() + await this.loadSpecificEnvironmentFile() } /**