Open doubleailes opened 2 months ago
Describe the bug cmd_monitor use tokio::signal::unix which do not exist under windows
tokio::signal::unix
To Reproduce Steps to reproduce the behavior:
use tokio::signal::unix::{signal, SignalKind}; | ^^^^ could not find `unix` in `signal`
Expected behavior run make build under windows without error
make build
This PR https://github.com/spkenv/spk/pull/1110 should fix it,
Describe the bug cmd_monitor use
tokio::signal::unix
which do not exist under windowsTo Reproduce Steps to reproduce the behavior:
Expected behavior run
make build
under windows without error