1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 02:57:44 +00:00

Create a new feature for Fuchsia-enabled utilities.

This commit is contained in:
Lei Zhang 2016-11-24 17:54:47 -05:00
parent 59c12433e0
commit 546f2855d5
2 changed files with 84 additions and 1 deletions

View file

@ -12,7 +12,7 @@ pub fn main() {
if val == "1" && key.starts_with(feature_prefix) {
let krate = key[feature_prefix.len()..].to_lowercase();
match krate.as_ref() {
"default" | "unix" | "generic" | "nightly" | "test_unimplemented" => continue,
"default" | "unix" | "fuchsia" | "generic" | "nightly" | "test_unimplemented" => continue,
_ => {},
}
crates.push(krate.to_string());