Add `&&` to shell script

This commit is contained in:
Eric Kidd 2016-11-25 07:56:34 -05:00
parent a5fbde9b8b
commit 0c1c134978
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ ENV PATH=/home/rust/.cargo/bin:/usr/local/musl/bin:/usr/local/bin:/usr/bin:/bin
# `--target` to musl so that our users don't need to keep overriding it
# manually.
RUN curl https://sh.rustup.rs -sSf | \
sh -s -- -y --default-toolchain $TOOLCHAIN \
sh -s -- -y --default-toolchain $TOOLCHAIN && \
rustup target add x86_64-unknown-linux-musl
ADD cargo-config.toml /home/rust/.cargo/config