aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
blob: fb3e52dc2f43f1a8424744c9db6ab134754ebd02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
set -euxo pipefail

main() {
    case $TARGET in
        thumbv*-none-eabi*)
            rustup target add $TARGET
            ;;
    esac
}

main