source: rubycfg_ssp/trunk/setup_tools.sh@ 357

Last change on this file since 357 was 357, checked in by nmir-saito, 6 years ago

使用するDockerイメージを docker-toppersベースにするために変更

  • Property svn:executable set to *
File size: 294 bytes
Line 
1#!/usr/bin/env bash
2set -eu
3
4# Variables
5GCC_COMMAND=arm-none-eabi-gcc
6
7: "install $GCC_COMMAND" && {
8 if type $GCC_COMMAND > /dev/null 2>&1; then
9 echo "$GCC_COMMAND already exists. skip install."
10 else
11 sudo apt-get update
12 sudo apt-get install -y gcc-arm-none-eabi
13 fi
14}
15
16exit 0
Note: See TracBrowser for help on using the repository browser.