procpilot 0.7.0

Production-grade subprocess runner with typed errors, retry, and timeout
1
2
3
4
5
6
7
8
//! Test helper: print the current working directory.
//!
//! Not part of procpilot's public API. Used by internal tests.

fn main() {
    let cwd = std::env::current_dir().expect("cwd");
    println!("{}", cwd.display());
}