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

@ -15,6 +15,6 @@ struct DpkInstallCommand: ParsableCommand {
var packages: [String]
func run() throws {
print("installing \"\(packages.joined(separator: "\", \""))\"")
eprint("installing \"\(packages.joined(separator: "\", \""))\"")
}
}