mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
22 lines
303 B
Bash
Executable File
22 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
echo pwd:$PWD
|
|
format=$1
|
|
format_wildcards="""
|
|
./matrix/*.*pp
|
|
./test/*.*pp
|
|
"""
|
|
|
|
if [[ $format ]]
|
|
then
|
|
echo formatting
|
|
astyle ${format_wildcards}
|
|
else
|
|
echo checking format
|
|
astyle --dry-run ${format_wildcards} | grep Formatted
|
|
if [[ $? -eq 0 ]]
|
|
then
|
|
echo need to format
|
|
exit 1
|
|
fi
|
|
fi
|