We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b47cff commit f0b6314Copy full SHA for f0b6314
ci/install.sh
@@ -11,7 +11,9 @@ install_qemu() {
11
}
12
13
install_gist() {
14
- gem install gist -v 4.5.0
+ if [[ $OSX ]]; then
15
+ gem install gist -v 4.5.0
16
+ fi
17
18
19
install_binutils() {
@@ -38,21 +40,13 @@ add_rustup_target() {
38
40
fi
39
41
42
-install_xargo() {
- if [[ $CARGO == xargo ]]; then
43
- curl -sf "https://raw.githubusercontent.com/japaric/rust-everywhere/master/install.sh" | \
44
- bash -s -- --from japaric/xargo --at /root/.cargo/bin --vers 0.1.5
45
- fi
46
-}
47
-
48
main() {
49
if [[ $OSX || ${IN_DOCKER_CONTAINER:-n} == y ]]; then
50
install_qemu
51
install_gist
52
install_binutils
53
install_rust
54
add_rustup_target
55
- install_xargo
56
57
58
0 commit comments