Commit 569149af authored by Matthieu Cattin's avatar Matthieu Cattin

Fix operator =, was ==

parent d7a5722f
......@@ -60,7 +60,7 @@ echo "--------------------------------------------------------------"
echo " "
echo -n "End of the test, do you want to switch the computer OFF? [y.n]"
read reply
if [ "$reply" == "y" ]
if [ "$reply" = "y" ]
then
sudo halt
fi
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment