mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 18:57:06 +01:00
You will want to 'make distclean' after this. I also removed libsecp; we use the one in in libwally anyway. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
8 lines
239 B
Bash
Executable file
8 lines
239 B
Bash
Executable file
#!/bin/sh
|
|
# Use uncrustify to reformat the source
|
|
if test -z "$1"; then
|
|
files=`ls src/*.c src/*.h src/ctest/*.c include/*.h | grep -v src/config.h`
|
|
else
|
|
files="$*"
|
|
fi
|
|
uncrustify --replace --no-backup -c tools/uncrustify.cfg $files
|