1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

refact(df): follow the same directory pattern than the other software

This commit is contained in:
Sylvestre Ledru 2020-04-30 23:07:22 +02:00 committed by Roy Ivy III
parent c85756e509
commit 8d1f0edfc4
3 changed files with 2 additions and 7 deletions

View file

@ -5,7 +5,7 @@ authors = []
[lib]
name = "uu_df"
path = "df.rs"
path = "src/df.rs"
[dependencies]
clap = "2.32.0"
@ -18,4 +18,4 @@ winapi = { version = "0.3", features = ["handleapi"] }
[[bin]]
name = "df"
path = "main.rs"
path = "../../common/uumain.rs"

View file

@ -1,5 +0,0 @@
extern crate uu_df;
fn main() {
std::process::exit(uu_df::uumain(std::env::args().collect()));
}