mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-26 14:23:47 +01:00
fa61b50bb0
- Occasional code restyling with 'clang-formant --style=LLVM'.
16 lines
293 B
Bash
Executable File
16 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
STYLE='--style=LLVM'
|
|
FORMATER='clang-format -i'
|
|
|
|
if [[ -z $SMVARS ]]
|
|
then
|
|
echo '$SMVARS is not set. Please source '/path/to/Sherman-Morrison/smvars.sh''
|
|
exit 1
|
|
fi
|
|
|
|
for ext in c cc cpp h hpp
|
|
do
|
|
find $SMROOT -type f -iname "*.${ext}" -exec $FORMATER $STYLE {} \;
|
|
done
|