1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 04:57:45 +00:00

join: switch to auto-generated main.rs

This commit is contained in:
Konstantin Pospelov 2017-12-16 16:09:46 +03:00
parent b33ce67d91
commit a04a77a477
2 changed files with 2 additions and 6 deletions

View file

@ -2,6 +2,7 @@
name = "join"
version = "0.0.1"
authors = []
build = "../../mkmain.rs"
[lib]
name = "uu_join"
@ -13,4 +14,4 @@ uucore = { path="../uucore" }
[[bin]]
name = "join"
path = "main.rs"
path = "../../uumain.rs"

View file

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