<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-infrastructure.

</pre>
<p><a href="https://github.com/macports/macports-infrastructure/commit/b35dbf34ccb48b47b2cb079a6ae5eb843201fedf">https://github.com/macports/macports-infrastructure/commit/b35dbf34ccb48b47b2cb079a6ae5eb843201fedf</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 b35dbf3  Avoid an exception if the subportlist is empty
</span>b35dbf3 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit b35dbf34ccb48b47b2cb079a6ae5eb843201fedf
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Thu Mar 8 09:54:55 2018 -0600

<span style='display:block; white-space:pre;color:#404040;'>    Avoid an exception if the subportlist is empty
</span>---
 buildbot/master.cfg | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/buildbot/master.cfg b/buildbot/master.cfg
</span><span style='display:block; white-space:pre;color:#808080;'>index 006b056..2df6c5f 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/buildbot/master.cfg
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/buildbot/master.cfg
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -710,7 +710,10 @@ if 'mirror' in config['deploy']:
</span> 
     @util.renderer
     def make_jobs_mirror_command(props):
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        return ['./mpbb/mpbb', '--prefix', jobs_mirror_prefix, 'mirror-distfiles', '--distfiles-dir', config['deploy']['mirror']['distfilesdir']] + props.getProperty('subportlist').split()
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        cmd = ['./mpbb/mpbb', '--prefix', jobs_mirror_prefix, 'mirror-distfiles', '--distfiles-dir', config['deploy']['mirror']['distfilesdir']]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        if props.hasProperty('subportlist'):
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            cmd += props.getProperty('subportlist').split()
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        return cmd
</span> 
     jobs_mirror_factory.addStep(steps.ShellCommand(
         command=make_jobs_mirror_command,
</pre><pre style='margin:0'>

</pre>