We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 005c0a3 commit ca1c773Copy full SHA for ca1c773
src/CodeQLToolkit.Features/CodeQL/Commands/Targets/InstallCommand.cs
@@ -30,6 +30,9 @@ public override void Run()
30
installation.Install();
31
32
// set the environment variable
33
+ Log<InstallCommand>.G().LogInformation($"Setting QLT_CODEQL_HOME to {installation.CodeQLHome}...");
34
+ Log<InstallCommand>.G().LogInformation($"Setting QLT_CODEQL_PATH to {installation.CodeQLToolBinary}...");
35
+
36
Environment.SetEnvironmentVariable("QLT_CODEQL_HOME", installation.CodeQLHome);
37
Environment.SetEnvironmentVariable("QLT_CODEQL_PATH", installation.CodeQLToolBinary);
38
0 commit comments