Skip to content

Commit a94d9d2

Browse files
committed
install minimal profile by default
1 parent 0d01c30 commit a94d9d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ install:
2121
- set /p RUSTC_HASH=<rust-version
2222
# Install Rust
2323
- curl -sSf --retry 3 -o rustup-init.exe https://win.rustup.rs/
24-
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable
24+
- rustup-init.exe -y --default-host %TARGET% --default-toolchain stable --profile minimal
2525
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
2626
- rustup default stable
2727
- rustup uninstall beta

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ before_script:
3131
RUSTC_HASH=$(cat rust-version)
3232
fi
3333
# Install Rust ("stable" toolchain for better caching, it is just used to build rustup-toolchain-install-master)
34-
- curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y --default-toolchain stable
34+
- curl https://build.travis-ci.org/files/rustup-init.sh -sSf | sh -s -- -y --default-toolchain stable --profile minimal
3535
- export PATH=$HOME/.cargo/bin:$PATH
3636
- rustup default stable
3737
- rustup uninstall beta

0 commit comments

Comments
 (0)