diff options
author | Joseph Graham <joseph@fibreglass.tunachunks> | 2014-01-23 11:10:51 +0000 |
---|---|---|
committer | Joseph Graham <joseph@fibreglass.tunachunks> | 2014-01-23 11:10:51 +0000 |
commit | 33c0f83f1ddca88047e23d160068c2551dbcebc3 (patch) | |
tree | 0771bdadd5d27e6b86b0cb73eedd7952f89242f9 | |
parent | 19f682d65caa5ef04c9b021a21842dc70efb97c8 (diff) |
Fix mistake
-rw-r--r-- | hack_of_all_hacks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hack_of_all_hacks b/hack_of_all_hacks index 31dd0da..345c81e 100644 --- a/hack_of_all_hacks +++ b/hack_of_all_hacks @@ -250,7 +250,7 @@ EOF message="${process#*:}" message="${message# }" - if "${subject}" == "${my_own_name}" + if [[ "${subject}" == "${my_own_name}" ]] then send_msg "${channel_it_came_from}" "${my_own_name}: ${personoslash} told me to tell you: ${message}" else |