We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b3e0c commit cf49fd1Copy full SHA for cf49fd1
Sources/tart/Commands/Run.swift
@@ -209,7 +209,7 @@ struct Run: AsyncParsableCommand {
209
SentrySDK.capture(error: error)
210
SentrySDK.flush(timeout: 2.seconds.timeInterval)
211
212
- print(error)
+ fputs("\(error)\n", stderr)
213
214
Foundation.exit(1)
215
}
Sources/tart/Root.swift
@@ -94,7 +94,7 @@ struct Root: AsyncParsableCommand {
94
95
// Handle a non-ArgumentParser's exception that requires a specific exit code to be set
96
if let errorWithExitCode = error as? HasExitCode {
97
98
99
Foundation.exit(errorWithExitCode.exitCode)
100
0 commit comments