1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use std::path::Path;

/// Run `dpkg` to install `deb` archive at the given path
pub fn install_pkg(path: &Path) {

}

/// Builds a release binary with `cargo build --release`
pub fn cargo_build(verbose: bool) {

}