From 7bd1c4fe8cbeeff4cd5c3254bb27b5537671914e Mon Sep 17 00:00:00 2001 From: "Ash (ashisbored)" Date: Sun, 21 Nov 2021 22:30:24 +0000 Subject: [PATCH] fix: Quote marks around path --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 497490f..ad37160 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,7 +86,7 @@ fn main() { } format!("{}", buf.to_string_lossy()) } else { - format!("{:?}", pwd.to_string_lossy()) + format!("{}", pwd.to_string_lossy()) }; let repo = Repository::discover(".").ok();