1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 05:57:46 +00:00

Remove quotes from current directory.

This commit is contained in:
Joseph Crail 2015-05-02 21:05:30 -04:00
parent c4ae971e8c
commit 965a770841

View file

@ -49,7 +49,7 @@ pub fn uumain(args: Vec<String>) -> i32 {
return 0; return 0;
} else { } else {
println!("{:?}", env::current_dir().unwrap()); println!("{}", env::current_dir().unwrap().display());
return 0; return 0;
} }