File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- nightly-2020-01-18
1
+ nightly-2020-01-25
Original file line number Diff line number Diff line change 5
5
case $1 in
6
6
" prepare" )
7
7
# FIXME Automatically detect latest nightly
8
- read -p " Date of nightly to use (aka yesterday GMT) : " TOOLCHAIN
8
+ read -p " Date of nightly to use: " TOOLCHAIN
9
9
10
10
echo " => Installing new nightly"
11
11
rustup toolchain install --profile minimal nightly-${TOOLCHAIN} # Sanity check to see if the nightly exists
12
12
echo nightly-${TOOLCHAIN} > rust-toolchain
13
13
14
14
echo " => Uninstalling all old nighlies"
15
- for nightly in $( rustup toolchain list | grep nightly- | grep -v $TOOLCHAIN ) ; do
15
+ for nightly in $( rustup toolchain list | grep nightly | grep -v $TOOLCHAIN | grep -v nightly-x86_64 ) ; do
16
16
rustup toolchain uninstall $nightly
17
17
done
18
18
You can’t perform that action at this time.
0 commit comments