mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-05-01 08:41:09 +00:00
9 lines
174 B
Bash
Executable file
9 lines
174 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cargo fmt -- --check
|
|
fd -e nix | xargs nixfmt --check
|
|
if ! out="$(cargo machete 2>/dev/null)"; then
|
|
echo "$out"
|
|
exit 1
|
|
fi
|
|
typos
|