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

uutils: change every target_os = "macos" to target_vendor = "apple"

This commit is contained in:
aspen 2021-03-17 21:32:34 -04:00
parent 99be7a3172
commit 4e29b693f8
No known key found for this signature in database
GPG key ID: 9CCE5F51B2F8C465
18 changed files with 64 additions and 74 deletions

View file

@ -11,7 +11,7 @@ fn test_hostname() {
}
// FixME: fails for "MacOS"
#[cfg(not(target_os = "macos"))]
#[cfg(not(target_vendor = "apple"))]
#[test]
fn test_hostname_ip() {
let result = new_ucmd!().arg("-i").run();