mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $(uname) = "Darwin" ]; then
|
|
DIR=$(dirname $(greadlink -f $0))
|
|
else
|
|
DIR=$(dirname $(readlink -f $0))
|
|
fi
|
|
|
|
astyle --options="${DIR}"/astylerc $*
|
|
|