vik 0.1.1

Vik is an issue-driven coding workflow automation tool.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Windows stub for [`super::detach`].
//!
//! Real implementation will use `DETACHED_PROCESS` to relaunch
//! `vik run` without `-d`.

use std::path::Path;

use super::DetachError;

pub fn detach(_log_dir: &Path) -> Result<(), DetachError> {
  tracing::error!("vik run -d is not supported on Windows yet");
  Err(DetachError::PlatformUnsupported)
}