Oops, one more time

This commit is contained in:
Jonathan Turner 2019-08-21 19:47:33 +12:00
parent c54528651d
commit c98bf68341

View File

@ -28,12 +28,12 @@ impl WholeStreamCommand for PS {
fn ps(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> { fn ps(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
let system; let system;
#[cfg(not(windows))] #[cfg(linux)]
{ {
system = sysinfo::System::new(); system = sysinfo::System::new();
} }
#[cfg(windows)] #[cfg(not(linux))]
{ {
let mut sy = sysinfo::System::new_with_specifics(RefreshKind::new().with_processes()); let mut sy = sysinfo::System::new_with_specifics(RefreshKind::new().with_processes());
sy.refresh_processes(); sy.refresh_processes();