From b39835ad761498b2e90237ee234297e48d10e04a Mon Sep 17 00:00:00 2001 From: Tomi Turtiainen <10324676+tomi@users.noreply.github.com> Date: Thu, 14 Aug 2025 10:09:57 +0300 Subject: [PATCH] build: Remove unused env var in build script (#18318) --- scripts/build-n8n.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-n8n.mjs b/scripts/build-n8n.mjs index 334c0722a6..bfa61afea1 100755 --- a/scripts/build-n8n.mjs +++ b/scripts/build-n8n.mjs @@ -28,7 +28,7 @@ const rootDir = isInScriptsDir ? path.join(scriptDir, '..') : scriptDir; // #region ===== Configuration ===== const config = { - compiledAppDir: process.env.BUILD_OUTPUT_DIR || path.join(rootDir, 'compiled'), + compiledAppDir: path.join(rootDir, 'compiled'), rootDir: rootDir, };