You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: protect Unix-specific imports with cfg attributes
- Add #[cfg(unix)] to std::os::unix::fs::PermissionsExt imports
- Protect Unix-specific test functions with #[cfg(unix)]
- Fixes compilation on Windows by conditionally compiling Unix-only code
- Resolves GitHub Actions workflow failure on Windows runners
Affected files:
- src/e2e/tasks/setup_ssh_key.rs
- src/infrastructure/tofu/template/renderer/mod.rs
- src/infrastructure/ansible/template/renderer/inventory.rs
- src/domain/template/embedded.rs
All tests pass on Unix systems and code now compiles cross-platform.
0 commit comments