Files
cdk/misc/scripts/check-fmt.sh
thesimplekid c77feec5e5 chore: fix precommit scrips check
This removes rustup from the scripts. As rust versions should be managed
through the nix shell and not rust up.
2024-04-24 16:33:42 +01:00

15 lines
257 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
flags=""
# Check if "check" is passed as an argument
if [[ "$#" -gt 0 && "$1" == "check" ]]; then
flags="--check"
fi
# Check workspace crates
cargo fmt --all -- --config format_code_in_doc_comments=true $flags