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

main() {
    if [ $TARGET != x86_64-unknown-linux-gnu ]; then
        rustup target add $TARGET
    fi
}

main