Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/scripts/format-source.sh
blob: 9b3bd4910a24100c9bbabdebcc38a52e0774b412 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

cd "`dirname \"$0\"`/../source"

: ${CLANG_FORMAT:=clang-format}

for file in *; do
  if [ $file != "extern" -a -d $file ]; then
    find $file \( -name '*.cpp' -or -name '*.hpp' \) -exec $CLANG_FORMAT -fallback-style=none -i {} \;
  fi
done