Initial community commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
#cd libopenmpt
|
||||
# clang-format-13 -i *.hpp *.cpp *.h
|
||||
#cd ..
|
||||
|
||||
cd examples
|
||||
clang-format-13 -i *.cpp *.c
|
||||
cd ..
|
||||
|
||||
#cd openmpt123
|
||||
# clang-format-13 -i *.hpp *.cpp
|
||||
#cd ..
|
||||
|
||||
cd src/mpt
|
||||
find . -type f -iname '*\.hpp' | xargs clang-format-13 -i
|
||||
cd ../..
|
||||
|
||||
cd src/openmpt
|
||||
find . -type f -iname '*\.cpp' | xargs --no-run-if-empty clang-format-13 -i
|
||||
find . -type f -iname '*\.hpp' | xargs --no-run-if-empty clang-format-13 -i
|
||||
cd ../..
|
||||
Reference in New Issue
Block a user