mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
Tools: build_parameters.sh: honour $BUILDLOGS
This commit is contained in:
parent
52aa676db2
commit
b365fc129d
@ -3,7 +3,10 @@
|
|||||||
set -e
|
set -e
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
PARAMS_DIR="../buildlogs/Parameters"
|
if [ "x$BUILDLOGS" = "x" ]; then
|
||||||
|
BUILDLOGS="../buildlogs"
|
||||||
|
fi
|
||||||
|
PARAMS_DIR="$BUILDLOGS/Parameters"
|
||||||
|
|
||||||
# work from either APM directory or above
|
# work from either APM directory or above
|
||||||
[ -d ArduPlane ] || cd APM
|
[ -d ArduPlane ] || cd APM
|
||||||
|
Loading…
Reference in New Issue
Block a user