From c65b9436851acfb53636df886dc8a55313c3213d Mon Sep 17 00:00:00 2001 From: "alexey.afanasiev" Date: Thu, 28 Nov 2024 23:15:44 +0100 Subject: [PATCH] :bug:QD-10360 Fix an order of setting variables custom JVM properties --- core/system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/system.go b/core/system.go index 292c2c85..b16cc58c 100644 --- a/core/system.go +++ b/core/system.go @@ -344,7 +344,6 @@ func runScopeScript(ctx context.Context, options *QodanaOptions, startHash strin options.ConfDirPath(), ) log.Infof("Analysing %s", hash) - writeProperties(options) configAtHash, e := platform.GetQodanaYaml(options.ProjectDir) if e != nil { @@ -354,6 +353,7 @@ func runScopeScript(ctx context.Context, options *QodanaOptions, startHash strin platform.Bootstrap(configAtHash.Bootstrap, options.ProjectDir) installPlugins(options, configAtHash.Plugins) + writeProperties(options) exitCode := runQodana(ctx, options) if !(exitCode == 0 || exitCode == 255) { log.Errorf("Qodana analysis on %s exited with code %d. Aborting", hash, exitCode)