diff options
author | 2020-08-28 19:52:20 +0200 | |
---|---|---|
committer | 2020-08-28 19:54:03 +0200 | |
commit | 0a118397332c10080c48d76e7416ce854a0260ba (patch) | |
tree | b284d3ef162113aeae169228a5b294a1c33f8234 /ci/install.sh | |
parent | 36886f19b6ca0ac3b30ddf8543d330a445506057 (diff) | |
download | cortex-m-0a118397332c10080c48d76e7416ce854a0260ba.tar.gz cortex-m-0a118397332c10080c48d76e7416ce854a0260ba.tar.zst cortex-m-0a118397332c10080c48d76e7416ce854a0260ba.zip |
Replace shell scripts with integration test
Diffstat (limited to 'ci/install.sh')
-rw-r--r-- | ci/install.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ci/install.sh b/ci/install.sh deleted file mode 100644 index fb3e52d..0000000 --- a/ci/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -set -euxo pipefail - -main() { - case $TARGET in - thumbv*-none-eabi*) - rustup target add $TARGET - ;; - esac -} - -main |