mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 06:58:27 -04:00
cbdf462acc
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1494 f9c3cf11-9bcb-44bc-f272-b75c42450872
9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
trap exit ERR
|
|
rm -rf _tmp
|
|
git clone git://github.com/pixhawk/mavlink.git -b dev _tmp
|
|
rm -rf _tmp/.git
|
|
rsync -av _tmp/* .
|
|
rm -rf _tmp
|
|
svn add --force *
|