From 4227f534b41794473bf27dd75e2e80269c02392f Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sun, 9 Mar 2025 10:39:10 +0100 Subject: [PATCH] Print newline on path warnings to stderr instead of stdout --- src/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path.rs b/src/path.rs index 0183f1739..a08c1248b 100644 --- a/src/path.rs +++ b/src/path.rs @@ -183,7 +183,7 @@ fn maybe_issue_path_warning( ) ); } - printf!("\n"); + eprintf!("\n"); } /// Finds the path of an executable named `cmd`, by looking in $PATH taken from `vars`.