File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,11 @@ def run(self):
71
71
last_ground_change = Groundskeeper .get_last_ground_change (git .Repo (Path (__file__ ).parent .parent ))
72
72
73
73
# Prepare for MAVLink parsing - always use the latest script (since it might cover new messages)
74
- shutil .copy (f'{ self .repository_path } /Tools/scripts/mavlink_parse.py' , self .temp_folder )
74
+ #shutil.copy(f'{self.repository_path}/Tools/scripts/mavlink_parse.py', self.temp_folder)
75
+ # TEMPORARY WORKAROUND UNTIL ArduPilot/ardupilot#27226 IS MERGED
76
+ from urllib .request import urlretrieve
77
+ urlretrieve ("https://raw.githubusercontent.com/ES-Alexander/ardupilot/refs/heads/mavlink-messages-rst/Tools/scripts/mavlink_parse.py" , f'{ self .temp_folder } /mavlink_parse.py' )
78
+ # TEMP-END
75
79
76
80
# Get only valid tag names
77
81
tags = [
You can’t perform that action at this time.
0 commit comments