Files
Vita3K/format.sh
T
2026-05-20 22:31:29 -04:00

7 lines
218 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
CLANG_FORMAT_BIN="${CLANG_FORMAT_BIN:-clang-format}"
find vita3k tools/gen-modules tools/native-tool \( -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 "$CLANG_FORMAT_BIN" -i