diff --git a/README.md b/README.md index 28e2e08..b226dcb 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ Extremely in progress This has hardly been worked on and is essentially useless at its current state. Please don't use this unless you plan on developing it. ### TODO -[\*] Parse cmdline options well, including parsing the package name from the package repo +[ ] Parse cmdline options well, including parsing the package name from the package repo + +[ ] Make a KO [ ] Correctly download from several repos -[\*] Unpack tarballs of various types - -[ ] Correctly install binaries in system +[ ] Unpack tarballs of various types [ ] More, probably diff --git a/src/main.rs b/src/main.rs index d119633..0c67923 100644 --- a/src/main.rs +++ b/src/main.rs @@ -69,7 +69,8 @@ fn main() -> Result<(), std::io::Error> { resp.copy_to(&mut file).expect("failed to write file"); } else { - err_and_exit(format!("Request was unsuccessful...did you request from the correct repo?\nStatus is: \"{}\"", resp.status()), 0) + println!("FAIL!"); + std::process::exit(1); } let spltdirname: Vec<&str> = pkgname.split(".").collect();