From cd8748aed4a25b1bf22b3d5e3568fd31055acb54 Mon Sep 17 00:00:00 2001 From: Michael Sverdlov Date: Thu, 9 Jan 2025 19:01:41 +0200 Subject: [PATCH] Improve upload archive progress bar Signed-off-by: Michael Sverdlov --- common/commands/configfile.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/common/commands/configfile.go b/common/commands/configfile.go index b5f063df8..c7105993a 100644 --- a/common/commands/configfile.go +++ b/common/commands/configfile.go @@ -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() {