spkenv / spk

A Package Manager for high velocity software environments, built on spfs.
https://spkenv.dev
Apache License 2.0
38 stars 6 forks source link

[BUG] cmd_monitor use tokio::signal::unix which do not exist under windows #1114

Open doubleailes opened 2 months ago

doubleailes commented 2 months ago

Describe the bug cmd_monitor use tokio::signal::unix which do not exist under windows

To Reproduce Steps to reproduce the behavior:

  1. make build
  2. get the error
    use tokio::signal::unix::{signal, SignalKind};
    |                    ^^^^ could not find `unix` in `signal`

Expected behavior run make build under windows without error

doubleailes commented 2 months ago

This PR https://github.com/spkenv/spk/pull/1110 should fix it,