mirror of https://github.com/ArduPilot/ardupilot
11 lines
121 B
Bash
11 lines
121 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
rm -rf jsbsim
|
||
|
git clone https://github.com/tridge/jsbsim.git
|
||
|
cd jsbsim
|
||
|
./autogen.sh
|
||
|
make -j2
|