You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
213 B
13 lines
213 B
8 years ago
|
#!/bin/bash
|
||
6 years ago
|
set -euo pipefail
|
||
8 years ago
|
|
||
|
# Format all sources using rustfmt.
|
||
|
|
||
6 years ago
|
topdir=$(dirname "$0")
|
||
|
cd "$topdir"
|
||
8 years ago
|
|
||
8 years ago
|
# Make sure we can find rustfmt.
|
||
|
export PATH="$PATH:$HOME/.cargo/bin"
|
||
|
|
||
6 years ago
|
exec cargo +stable fmt --all -- "$@"
|