mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-05 02:30:22 +08:00
12 lines
414 B
Bash
Executable File
12 lines
414 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find -name '*.c' -exec uncrustify -c .uncrustify.cfg --no-backup {} \;
|
|
find -name '*.cpp' -exec uncrustify -c .uncrustify.cfg --no-backup {} \;
|
|
find -name '*.h' -exec uncrustify -c .uncrustify.cfg --no-backup {} \;
|
|
|
|
git checkout deps/picohttpparser/picohttpparser.h
|
|
git checkout deps/picohttpparser/picohttpparser.c
|
|
git checkout deps/utlist.h
|
|
git checkout deps/uthash.h
|
|
rm -f deps/uthash.h.uncrustify
|