rust/rustup.sh

29 lines
750 B
Bash
Raw Normal View History

2020-01-15 19:42:10 +01:00
#!/bin/bash
set -e
case $1 in
"prepare")
TOOLCHAIN=$(date +%Y-%m-%d)
2020-01-15 19:42:10 +01:00
echo "=> Installing new nightly"
rustup toolchain install --profile minimal nightly-${TOOLCHAIN} # Sanity check to see if the nightly exists
echo nightly-${TOOLCHAIN} > rust-toolchain
echo "=> Uninstalling all old nighlies"
for nightly in $(rustup toolchain list | grep nightly | grep -v $TOOLCHAIN | grep -v nightly-x86_64); do
2020-01-15 19:42:10 +01:00
rustup toolchain uninstall $nightly
done
./clean_all.sh
./prepare.sh
;;
"commit")
2020-01-15 20:20:30 +01:00
git commit -m "Rustup to $(rustc -V)"
2020-01-15 19:42:10 +01:00
;;
*)
echo "Unknown command '$1'"
echo "Usage: ./rustup.sh prepare|commit"
;;
esac