fix: better wording
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-12-27 04:17:30 +01:00
parent 06cc5d1cc3
commit 37e48f262b
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ If you have a Hub account you can have Abra log you in to avoid this. Pass
logMsg = fmt.Sprintf("ensuring %v recipe is up-to-date", barLength)
} else {
barLength = len(repos)
logMsg = fmt.Sprintf("ensuring %v recipes are up-to-date", barLength)
logMsg = fmt.Sprintf("ensuring %v recipes are up-to-date, this could take some time...", barLength)
}
if !internal.SkipUpdates {
@ -246,7 +246,7 @@ func updateRepositories(repos catalogue.RepoCatalogue, recipeName string) error
cloneLimiter := limit.New(10)
retrieveBar := formatter.CreateProgressbar(barLength, "retrieving recipes from recipes.coopcloud.tech...")
retrieveBar := formatter.CreateProgressbar(barLength, "ensuring recipes are up-to-date...")
ch := make(chan string, barLength)
for _, repoMeta := range repos {
go func(rm catalogue.RepoMeta) {