File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if [ -x "$(command -v git)" ]
7
7
then
8
8
echo " SUCCESS: Git is installed"
9
9
else
10
- echo " WARNING : Git does not seem to be installed."
10
+ echo " ERROR : Git does not seem to be installed."
11
11
echo " Please download Git using your package manager or over https://git-scm.com/!"
12
12
exit 1
13
13
fi
@@ -16,7 +16,7 @@ if [ -x "$(command -v rustc)" ]
16
16
then
17
17
echo " SUCCESS: Rust is installed"
18
18
else
19
- echo " WARNING : Rust does not seem to be installed."
19
+ echo " ERROR : Rust does not seem to be installed."
20
20
echo " Please download Rust using https://rustup.rs!"
21
21
exit 1
22
22
fi
@@ -25,7 +25,7 @@ if [ -x "$(command -v cargo)" ]
25
25
then
26
26
echo " SUCCESS: Cargo is installed"
27
27
else
28
- echo " WARNING : Cargo does not seem to be installed."
28
+ echo " ERROR : Cargo does not seem to be installed."
29
29
echo " Please download Rust and Cargo using https://rustup.rs!"
30
30
exit 1
31
31
fi
@@ -75,7 +75,7 @@ MinRustVersion=1.31
75
75
vercomp $RustVersion $MinRustVersion
76
76
if [ $? -eq 2 ]
77
77
then
78
- echo " WARNING : Rust version is too old: $RustVersion - needs at least $MinRustVersion "
78
+ echo " ERROR : Rust version is too old: $RustVersion - needs at least $MinRustVersion "
79
79
echo " Please update Rust with 'rustup update'"
80
80
exit 1
81
81
else
You can’t perform that action at this time.
0 commit comments