-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Context
The type builtin currently uses Unix-specific code that won't compile on Windows:
std::os::unix::fs::PermissionsExttrait (line 5 in src/main.rs)- PATH separator ":" is Unix-specific (Windows uses ";")
Suggested approach
Consider using conditional compilation with #[cfg(unix)] and #[cfg(windows)] attributes to support both platforms, or document that the shell is Unix-only.
References
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels