Skip to content

Commit cd8748a

Browse files
committed
Improve upload archive progress bar
Signed-off-by: Michael Sverdlov <[email protected]>
1 parent f250b71 commit cd8748a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

common/commands/configfile.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,10 +448,14 @@ func getIncludeExcludePatterns(patternType string) string {
448448
}
449449

450450
func (configFile *ConfigFile) configGradle() error {
451-
if err := configFile.setResolver(false); err != nil {
451+
if err := configFile.setDeployerResolver(); err != nil {
452452
return err
453453
}
454-
return configFile.setDeployer(false)
454+
if configFile.Deployer.ServerId != "" {
455+
configFile.setMavenIvyDescriptors()
456+
}
457+
configFile.readGradleGlobalConfig()
458+
return nil
455459
}
456460

457461
func (configFile *ConfigFile) readGradleGlobalConfig() {

0 commit comments

Comments
 (0)