• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Ensure formatting and clippy is done on nightly.
3
4set -e
5
6# Change to our project home.
7script_dir=`dirname "${BASH_SOURCE[0]}"`
8cd "$script_dir"/..
9
10cargo +nightly fmt
11