Skip to content

Commit

Permalink
Improve upload archive progress bar
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <[email protected]>
  • Loading branch information
sverdlov93 committed Jan 9, 2025
1 parent f250b71 commit cd8748a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions common/commands/configfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -448,10 +448,14 @@ func getIncludeExcludePatterns(patternType string) string {
}

func (configFile *ConfigFile) configGradle() error {
if err := configFile.setResolver(false); err != nil {
if err := configFile.setDeployerResolver(); err != nil {
return err
}
return configFile.setDeployer(false)
if configFile.Deployer.ServerId != "" {
configFile.setMavenIvyDescriptors()
}
configFile.readGradleGlobalConfig()
return nil
}

func (configFile *ConfigFile) readGradleGlobalConfig() {
Expand Down

0 comments on commit cd8748a

Please sign in to comment.