simple_command 0.1.2

Simple command runner for build.rs
Documentation
1
2
3
4
5
6
7
fn main() {
    // this should succeed
    simple_command::simple_command("ls");

    // this should panic, because `tree --foo` gives non-zero return code
    simple_command::simple_command("tree --foo");
}