mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 06:12:40 +00:00
8ceb4048d0
Quiet recipes are prefixed with a `@`, and inside quiet recipes the usual meaning of `@` is inverted. Only lines starting with `@` are echoed.
19 lines
633 B
Makefile
19 lines
633 B
Makefile
@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
|
|
|
|
run-test TEST:
|
|
cargo test --test {{TEST}}
|
|
|
|
run-tests:
|
|
cargo test --features "yaml unstable"
|
|
|
|
lint:
|
|
rustup override add nightly
|
|
cargo build --features lints && rustup override remove
|