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() {
553
553
// Track all projects which could not be extracted successfully
554
554
var unsuccessfulProjects = []string {}
555
555
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 {
558
558
goVersionInfo := workspace .RequiredGoVersion ()
559
559
560
560
fixGoVendorIssues (& workspace , goVersionInfo != nil )
561
561
562
562
tryUpdateGoModAndGoSum (workspace )
563
+ }
563
564
565
+ // Attempt to extract all workspaces; we will tolerate individual extraction failures here
566
+ for i , workspace := range workspaces {
564
567
// check whether an explicit dependency installation command was provided
565
568
inst := util .Getenv ("CODEQL_EXTRACTOR_GO_BUILD_COMMAND" , "LGTM_INDEX_BUILD_COMMAND" )
566
569
shouldInstallDependencies := false
You can’t perform that action at this time.
0 commit comments