From 965a77084149aca9abdf32403838f5630a58f95a Mon Sep 17 00:00:00 2001 From: Joseph Crail Date: Sat, 2 May 2015 21:05:30 -0400 Subject: [PATCH] Remove quotes from current directory. --- src/pwd/pwd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pwd/pwd.rs b/src/pwd/pwd.rs index 9004cb2b8..38b8a6d59 100644 --- a/src/pwd/pwd.rs +++ b/src/pwd/pwd.rs @@ -49,7 +49,7 @@ pub fn uumain(args: Vec) -> i32 { return 0; } else { - println!("{:?}", env::current_dir().unwrap()); + println!("{}", env::current_dir().unwrap().display()); return 0; }