Last change
on this file since 434 was 302, checked in by Sanahuja Guillaume, 6 years ago |
modifs nouveau build system
|
-
Property svn:executable
set to
*
|
File size:
412 bytes
|
Rev | Line | |
---|
[302] | 1 | #! /bin/sh
|
---|
| 2 | DIR=$1
|
---|
| 3 | if [ ! -d $DIR ]; then
|
---|
| 4 | echo "Directory $DIR not found"
|
---|
| 5 | exit 1
|
---|
| 6 | fi
|
---|
| 7 | CLANG_FORMAT_CMD=$(locate --regex /clang-format$)
|
---|
| 8 | if [ $? -ne 0 ]; then
|
---|
| 9 | echo "clang-format command not found. Please install it before running this script."
|
---|
| 10 | exit 2
|
---|
| 11 | else
|
---|
| 12 | echo "clang-format binary used is $CLANG_FORMAT_CMD"
|
---|
| 13 | fi
|
---|
| 14 |
|
---|
| 15 | find $DIR \( -name '*.h' -o -name '*.cpp' \) -execdir $CLANG_FORMAT_CMD -style=llvm -i {} +
|
---|
| 16 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.