8 lines
174 B
Bash
Executable File
8 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
sources=$(find arch include kernel mm -name '*.c' -o -name '*.h')
|
|
clang-format --dry-run --Werror $sources
|