mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
build: install RTIM if it doesn't exist and upgrade it if it is in cargo bin home
This commit is contained in:
parent
42f32a07f9
commit
c38dd2ad0b
1 changed files with 14 additions and 2 deletions
|
@ -5,8 +5,20 @@ set -e
|
|||
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
if [[ "$CI" == true ]] || ! command -v rustup-toolchain-install-master > /dev/null; then
|
||||
cargo install -Z install-upgrade rustup-toolchain-install-master --bin rustup-toolchain-install-master
|
||||
ERRNO=0
|
||||
RTIM_PATH=$(command -v rustup-toolchain-install-master) || ERRNO=$?
|
||||
CARGO_HOME=${CARGO_HOME:-$HOME/.cargo}
|
||||
|
||||
# Check if people also install RTIM in other locations beside
|
||||
# ~/.cargo/bin
|
||||
if [[ "$ERRNO" -ne 0 ]] || [[ "$RTIM_PATH" == $CARGO_HOME/bin/rustup-toolchain-install-master ]]; then
|
||||
cargo install -Z install-upgrade rustup-toolchain-install-master
|
||||
else
|
||||
VERSION=$(rustup-toolchain-install-master -V | grep -o "[0-9.]*")
|
||||
REMOTE=$(cargo search rustup-toolchain-install-master | grep -o "[0-9.]*")
|
||||
echo "info: skipping updating rustup-toolchain-install-master at $RTIM_PATH"
|
||||
echo " current version : $VERSION"
|
||||
echo " remote version : $REMOTE"
|
||||
fi
|
||||
|
||||
RUST_COMMIT=$(git ls-remote https://github.com/rust-lang/rust master | awk '{print $1}')
|
||||
|
|
Loading…
Reference in a new issue