Add system command bindings for systems that are neither windows now unix

pull/3/head
trivernis 1 year ago
parent 31a1f2c2d0
commit a2bb990593
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -177,6 +177,20 @@ pub fn bind_system_commands(engine_state: &mut EngineState) -> CrateResult<()> {
}
}
#[cfg(not(any(unix, windows)))]
pub fn bind_system_commands(engine_state: &mut EngineState) -> CrateResult<()> {
bind_commands! {
engine_state,
Benchmark,
Complete,
External,
NuCheck,
Sys,
Ps,
Which
}
}
pub fn bind_string_commands(engine_state: &mut EngineState) -> CrateResult<()> {
bind_commands! {
engine_state,

Loading…
Cancel
Save