summaryrefslogtreecommitdiffstats
path: root/bin/email2irc.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-11-23 16:04:58 +0100
committerHolger Levsen <holger@layer-acht.org>2016-11-23 16:04:58 +0100
commit9bd78ccf02fc3dd0872f62b40b5919dff621acfd (patch)
tree4dea789c32780c9a9f10c35f3be6663937272ac7 /bin/email2irc.sh
parent44018d5e21de5f42612b003b584c3b42b0a8dd2a (diff)
downloadjenkins.debian.net-9bd78ccf02fc3dd0872f62b40b5919dff621acfd.tar.xz
Revert "YOLO: deal with quoted-printable continuation lines, change the '=' at 1st lineend into a space character"
This reverts commit 44018d5e21de5f42612b003b584c3b42b0a8dd2a.
Diffstat (limited to 'bin/email2irc.sh')
-rwxr-xr-xbin/email2irc.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/email2irc.sh b/bin/email2irc.sh
index 33beea41..0871cab9 100755
--- a/bin/email2irc.sh
+++ b/bin/email2irc.sh
@@ -87,8 +87,7 @@ while read -r line ; do
else
# deal with quoted-printable continuation lines: 2nd line/time
# if $MY_LINE ends with '=', then append the next line to $MY_LINE,
- # changing the '=' to a single space.
- MY_2ND_LINE=$(echo $MY_2ND_LINE | sed -s 's#=$# #')
+ # TODO: changing the '=' to a single space.
MY_LINE="$MY_2ND_LINE $MY_LINE"
debug123 "#5" MY_LINE $MY_LINE
debug123 "#6" MY_2ND_LINE $MY_2ND_LINE