mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-30 08:30:43 +00:00
c42ca05849
Check for older installation of the tools and only install them if missing or if the versions don't match
7 lines
88 B
Bash
Executable file
7 lines
88 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
make lint
|
|
fi
|