mirror of
https://github.com/BurntSushi/walkdir.git
synced 2025-10-02 08:00:30 +00:00

This supplants the previous "example" which was more like a debugging program. So this commit not only rewrites it (dropping docopt in the process in favor of clap), but moves it to its own non-published binary crate.
17 lines
261 B
Bash
Executable File
17 lines
261 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
MSRV="1.23.0"
|
|
|
|
cargo build --verbose
|
|
|
|
# Give up testing on MSRV since our dev-dependencies no longer support it.
|
|
if [ "$TRAVIS_RUST_VERSION" = "$MSRV" ]; then
|
|
exit
|
|
fi
|
|
|
|
cargo build --verbose --all
|
|
cargo doc --verbose
|
|
cargo test --verbose
|