From fb57a61ce55f6dc2a08c0442466d765dcf1782a2 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Tue, 27 Jun 2017 17:32:22 +1200 Subject: Correct equality check in test.sh --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 083626d..2b24176 100755 --- a/test.sh +++ b/test.sh @@ -23,7 +23,7 @@ real="$( \ echo "Key analysis shows it's for ${real}" -if [ "$found" == "$real" ] ; then +if [ "$found" = "$real" ] ; then echo "It's a match, I'm happy" rm $key rm $stderr -- cgit v1.1