mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-23 05:03:13 +00:00
29db3dd722
* Add scripts for Travis under ./scripts/travis * Install rustfmt and clippy on nightly * Lint code for formatting problems and common errors
8 lines
128 B
Bash
Executable file
8 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
export PATH="$PATH:$HOME/.cargo/bin"
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
make install
|
|
fi
|