From 818239473e8b48ea6936e181c3be596fe931d870 Mon Sep 17 00:00:00 2001 From: Michael Sverdlov Date: Thu, 9 Jan 2025 19:02:42 +0200 Subject: [PATCH] Improve upload archive progress bar Signed-off-by: Michael Sverdlov --- common/commands/configfile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/commands/configfile.go b/common/commands/configfile.go index c7105993a..d71455ead 100644 --- a/common/commands/configfile.go +++ b/common/commands/configfile.go @@ -496,7 +496,7 @@ func (configFile *ConfigFile) setResolver(withSnapshot bool) error { if configFile.Resolver.ServerId != "" { repoTypes := []utils.RepoType{utils.Virtual} if configFile.ConfigType != project.Go.String() { - // Go project doesn't support resolving from remote repositories. (https://jfrog.com/help/r/jfrog-artifactory-documentation/set-up-remote-go-repositories) + // Go doesn't support resolving from Artifactory remote Go repositories. (https://jfrog.com/help/r/jfrog-artifactory-documentation/set-up-remote-go-repositories) // To resolve dependencies from a Remote Go repository, you must nest the remote repository under a virtual Go repository. repoTypes = append(repoTypes, utils.Remote) }