feat: comply with linter for the first time
This commit is contained in:
parent
f032a224a3
commit
77d17d97b5
2 changed files with 12 additions and 4 deletions
|
|
@ -49,18 +49,19 @@ func checkoutRepositories(repositories []Repository) {
|
|||
log.Printf("error: %v", err)
|
||||
}
|
||||
clonedCount = clonedCount + 1
|
||||
bar.Add(1)
|
||||
progressBarAdd(1)
|
||||
|
||||
// pull the latest
|
||||
} else if strings.Contains(string(repoStatus), url) {
|
||||
pullRepository(repoName, repoDestination)
|
||||
bar.Add(1)
|
||||
progressBarAdd(1)
|
||||
|
||||
// report error if not cloned or pulled repository
|
||||
} else {
|
||||
log.Printf("error: decided not to clone or pull repository %v\n", repoName)
|
||||
log.Printf("error: this is why: %v\n", repoStatus)
|
||||
errorCount = errorCount + 1
|
||||
progressBarAdd(1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/k0kubun/go-ansi"
|
||||
"github.com/schollz/progressbar/v3"
|
||||
|
|
@ -13,9 +14,9 @@ func progressBar(repositories []Repository) {
|
|||
repoCount := len(repositories)
|
||||
|
||||
// make progressbar
|
||||
barPrefix := fmt.Sprintf("Getting your one and only repository...")
|
||||
barPrefix := "Getting your one and only repository..."
|
||||
if repoCount > 1 {
|
||||
barPrefix = fmt.Sprintf("Getting your repositories...")
|
||||
barPrefix = "Getting your repositories..."
|
||||
}
|
||||
|
||||
bar = progressbar.NewOptions(
|
||||
|
|
@ -38,6 +39,12 @@ func progressBar(repositories []Repository) {
|
|||
)
|
||||
}
|
||||
|
||||
func progressBarAdd(amount int) {
|
||||
if err := bar.Add(amount); err != nil {
|
||||
log.Printf("Progress bar update error: %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
func printSummary() {
|
||||
|
||||
fmt.Println("")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue