Fixed: Make sure environment variables are included when running test-only

This commit is contained in:
Martin Carlberg
2021-10-01 13:10:46 +02:00
parent 7969f118de
commit 1f501e6429
+1 -1
View File
@@ -344,7 +344,7 @@ task("test-only", function()
try try
{ {
childProcess.execSync(cmdString, {stdio: 'inherit'}); childProcess.execSync(serializedENV() + " " + cmdString, {stdio: 'inherit'});
} }
catch (e) catch (e)
{ {