From 1f501e64299bfcab333bc376cf6e1448157a32db Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Fri, 1 Oct 2021 13:10:46 +0200 Subject: [PATCH] Fixed: Make sure environment variables are included when running test-only --- Jakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile b/Jakefile index 41ee3894b..58d8fa918 100644 --- a/Jakefile +++ b/Jakefile @@ -344,7 +344,7 @@ task("test-only", function() try { - childProcess.execSync(cmdString, {stdio: 'inherit'}); + childProcess.execSync(serializedENV() + " " + cmdString, {stdio: 'inherit'}); } catch (e) {