Update for useless script #13599

This commit is contained in:
Alexey Milovidov 2020-08-12 06:03:47 +03:00
parent 90a5dface3
commit e4d02f6b51

View File

@ -6,10 +6,10 @@ cd `readlink -f $(dirname $0)`/../..
clang_format=`bash -c "compgen -c clang-format | grep 'clang-format-[[:digit:]]' | sort --version-sort --reverse | head -n1"`
if [ ! -z $clang_format ]; then
find base dbms utils -name *.cpp -or -name *.h -exec $clang_format -i {} + ;
find base src programs utils -name *.cpp -or -name *.h -exec $clang_format -i {} + ;
else
echo clang-format missing. try to install:
echo sudo apt install clang-format
echo or
echo sudo apt install clang-format-3.9
echo sudo apt install clang-format-10
fi