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)" ]
77then
88 echo " SUCCESS: Git is installed"
99else
10- echo " WARNING : Git does not seem to be installed."
10+ echo " ERROR : Git does not seem to be installed."
1111 echo " Please download Git using your package manager or over https://git-scm.com/!"
1212 exit 1
1313fi
@@ -16,7 +16,7 @@ if [ -x "$(command -v rustc)" ]
1616then
1717 echo " SUCCESS: Rust is installed"
1818else
19- echo " WARNING : Rust does not seem to be installed."
19+ echo " ERROR : Rust does not seem to be installed."
2020 echo " Please download Rust using https://rustup.rs!"
2121 exit 1
2222fi
@@ -25,7 +25,7 @@ if [ -x "$(command -v cargo)" ]
2525then
2626 echo " SUCCESS: Cargo is installed"
2727else
28- echo " WARNING : Cargo does not seem to be installed."
28+ echo " ERROR : Cargo does not seem to be installed."
2929 echo " Please download Rust and Cargo using https://rustup.rs!"
3030 exit 1
3131fi
@@ -75,7 +75,7 @@ MinRustVersion=1.31
7575vercomp $RustVersion $MinRustVersion
7676if [ $? -eq 2 ]
7777then
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 "
7979 echo " Please update Rust with 'rustup update'"
8080 exit 1
8181else
You can’t perform that action at this time.
0 commit comments