From c25983e1728497daa121b099cf13a46e20686a58 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 03c7b6c5..c7f0e5ea 100644 --- a/core/system.go +++ b/core/system.go @@ -342,7 +342,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 { @@ -352,6 +351,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)