mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-12 16:31:01 -05:00
23 lines
443 B
Bash
23 lines
443 B
Bash
#!/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 ../..
|