feat: renamed output.go file
This commit is contained in:
parent
604c754589
commit
f1c372a5cc
2 changed files with 8 additions and 8 deletions
|
|
@ -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)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue