souko 0.3.2

A simple command line utility that provides an easy way to organize clones of remote git repositories
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::{path::Path, process::Command};

use assert_cmd::cargo::CommandCargoExt;

pub fn souko_cmd(home_dir: &Path) -> Command {
    let mut cmd = Command::cargo_bin("souko").unwrap();
    cmd.envs([
        ("HOME", home_dir.as_os_str()),
        ("SOUKO_INTEGRATION_TEST", "true".as_ref()),
    ]);
    cmd
}