Skip to content

Commit

Permalink
return equality op
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpclark committed Oct 9, 2017
1 parent ccdc3c3 commit 18ea940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ else
# Ask for user consent before proceeding with installation
read -p "Rust is not installed. Do you want to install Rust now ? (necessary for Abrute) [y/n] " Rust_answer

if [ $Rust_answer -eq "y" ];
if [ "$Rust_answer" == "y" ];
then
# User agreed, proceed with installation
curl https://sh.rustup.rs -sSf | sh
Expand Down

0 comments on commit 18ea940

Please sign in to comment.