prefer to print to stderr for console chatter

This commit is contained in:
2024-11-17 02:59:13 +11:00
parent 20e76918fe
commit c239b8e424
9 changed files with 29 additions and 10 deletions

View File

@ -16,9 +16,9 @@ struct DpkUpgradeCommand: ParsableCommand {
func run() throws {
if packages.isEmpty {
print("upgrading system")
eprint("upgrading system")
} else {
print("upgrading invidual packages: \"\(packages.joined(separator: "\", \""))\"")
eprint("upgrading individual packages: \"\(packages.joined(separator: "\", \""))\"")
}
}
}