-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
Description
$ touch no-file/
touch: cannot touch 'no-file/': Other
GNU:
$ touch no-file/
touch: setting times of 'no-file/': No such file or directory
We should probably mix the two and have
touch: cannot touch 'no-file/': No such file or directory
The code is in:
coreutils/src/uu/touch/src/touch.rs
Line 88 in 1bb23cd
| show!(e.map_err_context(|| format!("cannot touch '{}'", path.display()))); |
@miDeb Any idea how to implement that? thanks :)
Reactions are currently unavailable