fix: Quote marks around path

This commit is contained in:
Ash (ashisbored) 2021-11-21 22:30:24 +00:00
parent 45f8dbd5bb
commit 7bd1c4fe8c
No known key found for this signature in database
GPG Key ID: 1AE71DC3E127235F
1 changed files with 1 additions and 1 deletions

View File

@ -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();