Skip to content

Commit

Permalink
no equality op
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpclark committed Oct 9, 2017
1 parent bdb8814 commit ccdc3c3
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 == y ];
if [ $Rust_answer -eq "y" ];
then
# User agreed, proceed with installation
curl https://sh.rustup.rs -sSf | sh
Expand Down

0 comments on commit ccdc3c3

Please sign in to comment.