mirror of https://github.com/ArduPilot/ardupilot
Tools: use /usr/bin/env to find python3
going directly to /usr/bin/python3 means we don't use the venv python
This commit is contained in:
parent
96f7d8a969
commit
23513e3f9a
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Run a mission in SITL
|
Run a mission in SITL
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Test parameter upgrade, master vs branch
|
Test parameter upgrade, master vs branch
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
'''
|
||||||
These are the unit tests for the python script that fetches online ArduPilot
|
These are the unit tests for the python script that fetches online ArduPilot
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Extracts parameter default values from an ArduPilot .bin log file. Unittests.
|
Extracts parameter default values from an ArduPilot .bin log file. Unittests.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
"""
|
"""
|
||||||
This script fetches online ArduPilot parameter documentation (if not cached) and adds it to the specified file
|
This script fetches online ArduPilot parameter documentation (if not cached) and adds it to the specified file
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Extracts parameter default values from an ArduPilot .bin log file.
|
Extracts parameter default values from an ArduPilot .bin log file.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
'''
|
'''
|
||||||
Rsync apm.pdef.xml files for different versions of the ArduPilot firmware
|
Rsync apm.pdef.xml files for different versions of the ArduPilot firmware
|
||||||
|
|
Loading…
Reference in New Issue