Files
RedBear-OS/fmt.sh
T
2025-03-02 22:00:36 +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