<pre style='margin:0'>
Zero King (l2dy) pushed a commit to branch master
in repository mpbot-github.

</pre>
<p><a href="https://github.com/macports/mpbot-github/commit/d10d1a5403a07d2f350bdc66fdb25333a5b3b639">https://github.com/macports/mpbot-github/commit/d10d1a5403a07d2f350bdc66fdb25333a5b3b639</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new d10d1a5  pr: Limit pastebin output to one line
</span>d10d1a5 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit d10d1a5403a07d2f350bdc66fdb25333a5b3b639
</span>Author: Zero King <l2dy@macports.org>
AuthorDate: Tue Mar 20 15:18:34 2018 +0000

<span style='display:block; white-space:pre;color:#404040;'>    pr: Limit pastebin output to one line
</span>---
 pr/webhook/travis.go | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/pr/webhook/travis.go b/pr/webhook/travis.go
</span><span style='display:block; white-space:pre;color:#808080;'>index 738fcaf..dd8cda9 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/pr/webhook/travis.go
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/pr/webhook/travis.go
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -163,7 +163,10 @@ func (receiver *Receiver) handleTravisWebhook(payload TravisWebhookPayload) {
</span>                           if pbInfo[2] == "-dep" {
                                        comment += "'s dependencies"
                                }
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                                comment += " **" + pbInfo[3] + "** on " + job.Config.OsxImage + ". [Log](" + string(content) + ")\n"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                           pasteLink := strings.SplitN(string(content), "\n", 2)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                           if len(pasteLink) > 0 {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                                   comment += " **" + pbInfo[3] + "** on " + job.Config.OsxImage + ". [Log](" + pasteLink[0] + ")\n"
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                           }
</span>                   }
                }
        }
</pre><pre style='margin:0'>

</pre>