mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
12 lines
225 B
Bash
Executable File
12 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
function format {
|
|
DIR=$1
|
|
find $DIR -regex ".*\.\(h\|cpp\|pde\)" -exec astyle {} \;
|
|
find $DIR -regex ".*\.\(h\|cpp\|pde\)" -exec rm {}.orig \;
|
|
}
|
|
|
|
format apo
|
|
format ArduRover
|
|
format ArduBoat
|
|
format libraries/APO
|