summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorQuinten Johnson <quinten.johnson@crowdstrike.com>2020-02-21 11:52:47 -0600
committerQuinten Johnson <quinten.johnson@crowdstrike.com>2020-02-21 11:52:47 -0600
commit17d0951e66fda8e11b204d5c4c41a0d5e22e78f7 (patch)
tree09503a41ec46461daf59f99ae0c0bc30b0b880a2 /install.sh
parent83bbd9e82e98b4ec1ab81a1d55bb8688e920a905 (diff)
fix(installation): make fatal errors more obvious
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.sh b/install.sh
index 9cd6048..85bdad7 100755
--- a/install.sh
+++ b/install.sh
@@ -7,7 +7,7 @@ if [ -x "$(command -v git)" ]
then
echo "SUCCESS: Git is installed"
else
- echo "WARNING: Git does not seem to be installed."
+ echo "ERROR: Git does not seem to be installed."
echo "Please download Git using your package manager or over https://git-scm.com/!"
exit 1
fi
@@ -16,7 +16,7 @@ if [ -x "$(command -v rustc)" ]
then
echo "SUCCESS: Rust is installed"
else
- echo "WARNING: Rust does not seem to be installed."
+ echo "ERROR: Rust does not seem to be installed."
echo "Please download Rust using https://rustup.rs!"
exit 1
fi
@@ -25,7 +25,7 @@ if [ -x "$(command -v cargo)" ]
then
echo "SUCCESS: Cargo is installed"
else
- echo "WARNING: Cargo does not seem to be installed."
+ echo "ERROR: Cargo does not seem to be installed."
echo "Please download Rust and Cargo using https://rustup.rs!"
exit 1
fi
@@ -75,7 +75,7 @@ MinRustVersion=1.31
vercomp $RustVersion $MinRustVersion
if [ $? -eq 2 ]
then
- echo "WARNING: Rust version is too old: $RustVersion - needs at least $MinRustVersion"
+ echo "ERROR: Rust version is too old: $RustVersion - needs at least $MinRustVersion"
echo "Please update Rust with 'rustup update'"
exit 1
else