Closed VoltaireNoir closed 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.
elevate
with_env
#[cfg(unix)]
if_cfg
Fixed it in #25
The crate is failing to compile on Windows. This is caused by the
elevate
crate'swith_env
function. This is only available on Unix based OSs and should be conditionally compiled with#[cfg(unix)]
or called with theif_cfg
macro.