[mike@mwxm4]

This commit is contained in:
2026-07-28 15:25:54 +02:00
parent 1e3ae9a4c7
commit 113527f220
14 changed files with 60 additions and 57 deletions
+3 -3
View File
@@ -296,7 +296,7 @@ func handlePushRemote(args string) {
}
}
if len(targets) > 1 {
fmt.Printf("%s %d/%d remotes updated\n", col(cGray, "pushremote:"), done, len(targets))
fmt.Printf("%s %d/%d remotes updated\n", col(cDark, "pushremote:"), done, len(targets))
}
}
@@ -313,7 +313,7 @@ func pushToRemote(t RemoteTarget, repo, description string) bool {
return false
}
fmt.Printf("%s %s %s (as %s)\n",
col(cGray, "remote"), col(cYellow, t.Name), col(cCyan, api.url), col(cGreen, owner))
col(cDark, "remote"), col(cYellow, t.Name), col(cBlue, api.url), col(cGreen, owner))
exists, err := api.repoExists(owner, repo)
if err != nil {
@@ -343,7 +343,7 @@ func pushToRemote(t RemoteTarget, repo, description string) bool {
return false
}
gitPushHeader(DIR, t.Name, header, "--tags")
fmt.Println(col(cGreen, "pushed to ") + col(cCyan, web))
fmt.Println(col(cGreen, "pushed to ") + col(cBlue, web))
return true
}