mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-23 00:04:02 -04:00
build_binaries: add compatability code for git tags
The tags are still called APMrover2-stable rather than Rover-stable - so cope with that in build_binaries.py for the time being
This commit is contained in:
parent
22c9081c83
commit
e1e4e6c3c1
@ -117,7 +117,11 @@ is bob we will attempt to checkout bob-AVR'''
|
|||||||
if ctag == "latest":
|
if ctag == "latest":
|
||||||
vtag = "master"
|
vtag = "master"
|
||||||
else:
|
else:
|
||||||
vtag = "%s-%s" % (vehicle, ctag)
|
tagvehicle = vehicle
|
||||||
|
if tagvehicle == "Rover":
|
||||||
|
# FIXME: Rover tags in git still named APMrover2 :-(
|
||||||
|
tagvehicle = "APMrover2"
|
||||||
|
vtag = "%s-%s" % (tagvehicle, ctag)
|
||||||
|
|
||||||
branches = []
|
branches = []
|
||||||
if cframe is not None:
|
if cframe is not None:
|
||||||
|
Loading…
Reference in New Issue
Block a user