Skip to content

Commit b804e6d

Browse files
authored
Print unlinked warning to standard error instead of standard out (#459)
1 parent 4fab0c0 commit b804e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Swiftly/Unlink.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ extension SwiftlyCommand {
7171
/// - Parameter ctx: The Swiftly context.
7272
func validateLinked(_ ctx: SwiftlyCoreContext) async throws {
7373
if try await !self.isLinked(ctx) {
74-
await ctx.message(Messages.currentlyUnlinked)
74+
await ctx.printError(Messages.currentlyUnlinked)
7575
}
7676
}
7777

0 commit comments

Comments
 (0)