From 143b55675c9d3dce11b20dbda5ecf05a0518d1b5 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Mon, 28 Aug 2023 12:56:21 +0200 Subject: [PATCH] Fix env.js to allow bumping dotenv-expand --- services/idp/ui_config/env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/idp/ui_config/env.js b/services/idp/ui_config/env.js index 211711b2dd..aa675dd317 100644 --- a/services/idp/ui_config/env.js +++ b/services/idp/ui_config/env.js @@ -32,7 +32,7 @@ const dotenvFiles = [ // https://github.com/motdotla/dotenv-expand dotenvFiles.forEach(dotenvFile => { if (fs.existsSync(dotenvFile)) { - require('dotenv-expand')( + require('dotenv-expand').expand( require('dotenv').config({ path: dotenvFile, })