Skip to content

Commit 77e5182

Browse files
committed
Fix Path::is_absolute on Hermit
1 parent 3da8bfb commit 77e5182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/path.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2327,7 +2327,7 @@ impl Path {
23272327
// FIXME: Allow Redox prefixes
23282328
self.has_root() || has_redox_scheme(self.as_u8_slice())
23292329
} else {
2330-
self.has_root() && (cfg!(any(unix, target_os = "wasi")) || self.prefix().is_some())
2330+
self.has_root() && (cfg!(any(unix, target_os = "hermit", target_os = "wasi")) || self.prefix().is_some())
23312331
}
23322332
}
23332333

0 commit comments

Comments
 (0)