mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2024-11-25 01:30:18 -06:00
9 lines
273 B
Bash
9 lines
273 B
Bash
|
#!/usr/bin/env sh
|
||
|
cppPat=(-name "*.cpp" -o -name "*.hpp" -o -name "*.h")
|
||
|
clang-format -i $(
|
||
|
(find src/tuxclocker-qt/ ${cppPat[@]}
|
||
|
find src/tuxclockerd/ ${cppPat[@]}
|
||
|
find src/plugins/ ${cppPat[@]}
|
||
|
find src/lib/ ${cppPat[@]}
|
||
|
find src/include/ -maxdepth 1 ${cppPat[@]}))
|