Files
RedBear-OS/fmt.sh
T
2025-11-29 19:04:06 +01:00

11 lines
168 B
Bash
Executable File

#!/usr/bin/bash
set -eo pipefail
printf "\e[1;32mFormatting\e[0m $dir\n"
if [[ "$CHECK_ONLY" -eq "1" ]]; then
cargo fmt --all --check
else
cargo fmt --all
fi