7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
find -name "*.[ch]" | grep -vE "autosync" > files_to_format.txt
|
|
clang-format-20 --files=files_to_format.txt --dry-run --Werror --verbose
|