summaryrefslogtreecommitdiffstats
path: root/scripts/format.bash
blob: 6612810d0dd8cab70ed940956c160c4df1f45910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

set -e
set -u
set -o pipefail

RUST_VERSION="nightly-2021-01-31"

rustup update "$RUST_VERSION"
rustup component add rustfmt --toolchain "$RUST_VERSION"
cargo +"$RUST_VERSION" fmt --all -- --check