Tidy up the top-level directory by moving misc. scripts into a subdirectory.

This commit is contained in:
Dan Gohman
2019-11-08 09:47:31 -08:00
parent a40e3b734a
commit fff777d4c3
4 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ done
# Update our local Cargo.lock (not checked in).
cargo update
./test-all.sh
./scripts/test-all.sh
# Commands needed to publish.
#

View File

@@ -23,7 +23,7 @@ function banner {
# Run rustfmt if we have it.
banner "Rust formatting"
if cargo +stable fmt -- --version > /dev/null ; then
if ! "$topdir/format-all.sh" --check ; then
if ! "$topdir/scripts/format-all.sh" --check ; then
echo "Formatting diffs detected! Run \"cargo fmt --all\" to correct."
exit 1
fi