Merge pull request #1000 from merelymyself/patch-1

Checks for rustup install in install.sh.
This commit is contained in:
diannasoreil 2022-05-17 13:21:18 +02:00 committed by GitHub
commit 8972e8f598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 2 deletions

View File

@ -25,12 +25,21 @@ else
exit 1
fi
if [ -x "$(command -v rustup)" ]
then
echo "SUCCESS: rustup is installed"
else
echo "ERROR: rustup does not seem to be installed."
echo "Please download rustup using https://rustup.rs!"
exit 1
fi
if [ -x "$(command -v rustc)" ]
then
echo "SUCCESS: Rust is installed"
else
echo "ERROR: Rust does not seem to be installed."
echo "Please download Rust using https://rustup.rs!"
echo "Please download Rust using rustup!"
exit 1
fi
@ -39,7 +48,7 @@ then
echo "SUCCESS: Cargo is installed"
else
echo "ERROR: Cargo does not seem to be installed."
echo "Please download Rust and Cargo using https://rustup.rs!"
echo "Please download Rust and Cargo using rustup!"
exit 1
fi