Revision control
Copy as Markdown
Other Tools
if ! rustup component add rustfmt; then
TARGET=$(rustc -Vv | awk '/host/{print $2}')
tar -xJf - --strip-components=3 -C ~/.cargo/bin
rm -rf ~/.cargo/bin/doc
fi
if ! rustup component add clippy; then
TARGET=$(rustc -Vv | awk '/host/{print $2}')
rustup default nightly-${NIGHTLY}
rustup component add rustfmt
rustup component add clippy
fi