You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom bundle creation now uses a platform-independent CodeQL base bundle and creates separate output bundles for Windows, Linux, and MacOS. These bundles are exposed via the QLT_CODEQL_BUNDLE_PATH_WIN64, QLT_CODEQL_BUNDLE_PATH_LINUX64, and QLT_CODEQL_BUNDLE_PATH_OSX64 environment variables, with QLT_CODEQL_BUNDLE_PATH continuing to map to the bundle compatible with the runner platform.
@@ -37,18 +37,18 @@ public void Register(Command parentCommand)
37
37
38
38
varrunCommand=newCommand("run","Functions pertaining to running codeql-related commands.");
39
39
parentCommand.Add(runCommand);
40
-
40
+
41
41
varinstallCommand=newCommand("install","Installs CodeQL (bundle or release distribution) locally.");
42
-
varcustomBundleOption=newOption<bool>("--custom-bundle",()=>false,"Build a custom bundle and compile the bundle."){IsRequired=true};
43
-
varquickBundleOption=newOption<bool>("--quick-bundle",()=>false,"Build a custom bundle and DO NOT compile the bundle."){IsRequired=true};
42
+
varcustomBundleOption=newOption<bool>("--custom-bundle",()=>false,"Build a custom bundle and compile the bundle."){IsRequired=true};
43
+
varquickBundleOption=newOption<bool>("--quick-bundle",()=>false,"Build a custom bundle and DO NOT compile the bundle."){IsRequired=true};
44
44
varpacksOption=newOption<string[]>("--packs","When creating bundles, this specifies the packs to include, Example `pack1 pack2 pack3`. You may specify also as `--pack pack1 --pack2 --pack3`"){IsRequired=false,AllowMultipleArgumentsPerToken=true};
0 commit comments