mirror of
https://github.com/xorgy/mediafire-fuse
synced 2026-01-13 13:14:29 -08:00
16 lines
207 B
Bash
Executable File
16 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ret=0
|
|
for f in ../**/*.c ../**/*.h; do
|
|
case $f in
|
|
../**/CMakeFiles/**/*)
|
|
;;
|
|
*)
|
|
INDENT_PROFILE=../.indent.pro indent -st $f | diff -u $f -
|
|
ret=$((ret+$?))
|
|
;;
|
|
esac
|
|
done
|
|
|
|
exit $ret
|