mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
31 lines
575 B
Bash
Executable File
31 lines
575 B
Bash
Executable File
#!/bin/bash
|
|
echo pwd:$PWD
|
|
astyle=$1
|
|
format=$2
|
|
format_wildcards="""
|
|
./matrix/*.*pp
|
|
./test/*.*pp
|
|
"""
|
|
|
|
#echo astyle: $astyle
|
|
#echo format: $format
|
|
|
|
if [[ $format -eq 1 ]]
|
|
then
|
|
echo formatting
|
|
$astyle ${format_wildcards}
|
|
else
|
|
echo checking format...
|
|
$astyle --dry-run ${format_wildcards} | grep Formatted &>/dev/null
|
|
if [[ $? -eq 0 ]]
|
|
then
|
|
echo Error: need to format
|
|
echo "From cmake build directory run: 'make format'"
|
|
exit 1
|
|
fi
|
|
echo no formatting needed
|
|
exit 0
|
|
fi
|
|
|
|
# vim: set et fenc=utf-8 ff=unix sts=0 sw=4 ts=4 :
|