SubconsciousCompute / meta-package-manager

A meta package manager for interfacing with multiple distro/platform specific package managers.
GNU Affero General Public License v3.0
3 stars 2 forks source link

MPM fails to compile on Windows #26

Closed VoltaireNoir closed 7 months ago

VoltaireNoir commented 7 months ago

The crate is failing to compile on Windows. This is caused by the elevate crate's with_env function. This is only available on Unix based OSs and should be conditionally compiled with #[cfg(unix)] or called with the if_cfg macro.

dilawar commented 7 months ago

Fixed it in #25