Skip to content

Instantly share code, notes, and snippets.

@rrichardson
Created December 18, 2017 15:54
Show Gist options
  • Save rrichardson/3bd32fac4823d775884f03533bdefe79 to your computer and use it in GitHub Desktop.
Save rrichardson/3bd32fac4823d775884f03533bdefe79 to your computer and use it in GitHub Desktop.
rustup_date() {
if [ -z "$1" ]; then
echo "usage: rustup_date 'YYYY-MM-DD'"
else
rustup override set nightly-${1}
rustup default nightly-${1}
rustup component add rls-preview --toolchain nightly-${1}
rustup component add rust-analysis --toolchain nightly-${1}
rustup component add rust-src --toolchain nightly-${1}
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment