mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 17:08:28 -04:00
Tools: build_binaries: fix inverted condition
This commit is contained in:
parent
30bcea73cc
commit
a511f97971
@ -116,10 +116,10 @@ skip_frame() {
|
||||
frame=$2
|
||||
if [ "$board" = "bebop" ]; then
|
||||
if [ "$frame" != "quad" ]; then
|
||||
return 1
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
return 0
|
||||
return 1
|
||||
}
|
||||
|
||||
# check if we should skip this build because we have already
|
||||
|
Loading…
Reference in New Issue
Block a user