testpath 0.2.0

companinon crate to bintest/testcall, augments Paths for testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
if [[$(git status -uno -s | wc -l) != 0 ]]; then
    echo "uncommited changes exist"
    exit
else
    cargo update
    cargo outdated -v -w --exit-code 1 >.cargo_outdated.log
    if [[$? == 1 ]]; then
        echo "dependencies re not up to date in $PWD"
        cat .cargo_outdated.log
    fi
fi