mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 13:45:15 -07:00
12 lines
265 B
Bash
12 lines
265 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Check that you have uncrustify
|
||
|
hash uncrustify
|
||
|
|
||
|
COMMITISH="${1:-master}"
|
||
|
for file in $(git diff --diff-filter=d --name-only $COMMITISH | grep '\.[ch]$'); do
|
||
|
uncrustify -c src/uncrustify.cfg -l C --replace --no-backup "$file"
|
||
|
done
|