1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Merge pull request #721 from ebfe/truefalse

Add true/false back to multicall binary
This commit is contained in:
Joseph Crail 2015-11-25 03:29:01 -05:00
commit 6e4392779f

View file

@ -29,8 +29,8 @@ pub fn main() {
let mut map: UtilityMap = HashMap::new();\n".as_bytes()).unwrap();
for krate in crates {
match krate.as_ref() {
"false" => continue,
"true" => continue,
"false" => {},
"true" => {},
_ => cf.write_all(format!("extern crate {krate} as uu{krate};\n", krate=krate).as_bytes()).unwrap(),
}