mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-16 12:55:16 +03:00
5 lines
266 B
Bash
Executable file
5 lines
266 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -d $PWD/gcc-arm-none-eabi-7-2018-q2-update/bin ] ; then
|
|
curl --retry 10 --retry-max-time 120 -L "https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2" | tar xfj -
|
|
fi
|