exchange/contrib/uncrustify.sh

15 lines
369 B
Bash
Raw Permalink Normal View History

2019-08-25 13:40:22 +02:00
#!/usr/bin/env bash
set -eu
2019-08-25 13:40:22 +02:00
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