summaryrefslogtreecommitdiff
path: root/contrib/uncrustify.sh
blob: e8e05d3e7f7c1fc1ced9c401e0a7fdaf95095d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

set -eu

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

if ! uncrustify --version >/dev/null; then
  echo "you need to install uncrustify for indentation"
  exit 1
fi

find "$DIR/../src" \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) \
  -exec uncrustify -c "$DIR/uncrustify.cfg" --replace --no-backup {} + \
  || true