feat: renamed output.go file

This commit is contained in:
Simon Cornet 2025-02-25 11:01:33 +01:00
commit f1c372a5cc
2 changed files with 8 additions and 8 deletions

View file

@ -44,11 +44,3 @@ func pullRepositories(repoDestination string) (string, error) {
bar.Add(1) bar.Add(1)
return string(pullOutput), err return string(pullOutput), err
} }
func printPullError(pullErrorMsg []string) {
if len(pullErrorMsg) > 0 {
for _, repo := range pullErrorMsg {
fmt.Printf("❕%s has unstaged changes.\n", repo)
}
}
}

View file

@ -51,3 +51,11 @@ func printSummary() {
errorCount, errorCount,
) )
} }
func printPullError(pullErrorMsg []string) {
if len(pullErrorMsg) > 0 {
for _, repo := range pullErrorMsg {
fmt.Printf("❕%s has unstaged changes.\n", repo)
}
}
}