2016-11-13 08:23:04 +00:00
|
|
|
@update-contributors:
|
|
|
|
echo 'Removing old CONTRIBUTORS.md'
|
|
|
|
mv CONTRIBUTORS.md CONTRIBUTORS.md.bak
|
|
|
|
echo 'Downloading a list of new contributors'
|
|
|
|
echo "The following is a list of contributors in alphabetical order:" > CONTRIBUTORS.md
|
|
|
|
echo "" >> CONTRIBUTORS.md
|
|
|
|
echo "" >> CONTRIBUTORS.md
|
|
|
|
githubcontrib --owner kbknapp --repo clap-rs --sha master --cols 6 --format md --showlogin true --sortBy login >> CONTRIBUTORS.md
|
|
|
|
rm CONTRIBUTORS.md.bak
|
2016-11-11 20:33:38 +00:00
|
|
|
|
|
|
|
run-test TEST:
|
|
|
|
cargo test --test {{TEST}}
|
|
|
|
|
2016-11-19 23:52:11 +00:00
|
|
|
debug TEST:
|
|
|
|
cargo test --test {{TEST}} --features debug
|
|
|
|
|
2016-11-11 20:33:38 +00:00
|
|
|
run-tests:
|
|
|
|
cargo test --features "yaml unstable"
|
|
|
|
|
|
|
|
lint:
|
|
|
|
rustup override add nightly
|
|
|
|
cargo build --features lints && rustup override remove
|