File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -553,14 +553,17 @@ func installDependenciesAndBuild() {
553553 // Track all projects which could not be extracted successfully
554554 var unsuccessfulProjects = []string {}
555555
556- // Attempt to extract all workspaces; we will tolerate individual extraction failures here
557- for i , workspace := range workspaces {
556+ // Attempt to automatically fix issues with each workspace
557+ for _ , workspace := range workspaces {
558558 goVersionInfo := workspace .RequiredGoVersion ()
559559
560560 fixGoVendorIssues (& workspace , goVersionInfo != nil )
561561
562562 tryUpdateGoModAndGoSum (workspace )
563+ }
563564
565+ // Attempt to extract all workspaces; we will tolerate individual extraction failures here
566+ for i , workspace := range workspaces {
564567 // check whether an explicit dependency installation command was provided
565568 inst := util .Getenv ("CODEQL_EXTRACTOR_GO_BUILD_COMMAND" , "LGTM_INDEX_BUILD_COMMAND" )
566569 shouldInstallDependencies := false
You can’t perform that action at this time.
0 commit comments