diff options
author | David Phillips <david@sighup.nz> | 2017-06-27 17:32:22 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-06-27 17:32:22 +1200 |
commit | fb57a61ce55f6dc2a08c0442466d765dcf1782a2 (patch) | |
tree | 3cd461cd27512dd46b01758416b24170a8e8d450 | |
parent | 8f42f3363da702a1e1c6d9094ae9cfad2f08676f (diff) | |
download | sand-leek-fb57a61ce55f6dc2a08c0442466d765dcf1782a2.tar.xz |
Correct equality check in test.sh
-rwxr-xr-x | test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |