mirror of https://github.com/ArduPilot/ardupilot
7 lines
122 B
Bash
7 lines
122 B
Bash
|
#!/bin/sh
|
||
|
rm -rf _tmp
|
||
|
git clone git://github.com/pixhawk/mavlink.git _tmp
|
||
|
rm -rf _tmp/.git
|
||
|
rsync -av _tmp/* .
|
||
|
rm -rf _tmp
|