<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/60d4af28662aa2936d73438e19ca2808a9fc4966">https://github.com/macports/macports-infrastructure/commit/60d4af28662aa2936d73438e19ca2808a9fc4966</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 60d4af2  Use absolute path for jobs mirror prefix
</span>60d4af2 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 60d4af28662aa2936d73438e19ca2808a9fc4966
</span>Author: Ryan Schmidt <ryandesign@macports.org>
AuthorDate: Wed Mar 7 11:36:32 2018 -0600

<span style='display:block; white-space:pre;color:#404040;'>    Use absolute path for jobs mirror prefix
</span>---
 buildbot/master.cfg | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

<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 06b0554..3ea3c47 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;'>@@ -679,6 +679,7 @@ if 'portindex' in config['deploy']:
</span> 
 if 'mirror' in config['deploy']:
     jobs_mirror_factory = util.BuildFactory()
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    jobs_mirror_prefix = os.path.join(jobs_mirror_factory.workdir, 'prefix')
</span> 
     # get mpbb; we'll do the checkout of base and dports via these scripts
     jobs_mirror_factory.addStep(GitForTools(
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -690,14 +691,14 @@ if 'mirror' in config['deploy']:
</span>         haltOnFailure=True))
 
     jobs_mirror_factory.addStep(steps.ShellCommand(
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        command=['./mpbb/mpbb', '--prefix', './prefix', 'selfupdate'],
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        command=['./mpbb/mpbb', '--prefix', jobs_mirror_prefix, 'selfupdate'],
</span>         name='selfupdate',
         description=['updating', 'MacPorts'],
         descriptionDone=['update', 'MacPorts'],
         haltOnFailure=True))
 
     jobs_mirror_factory.addStep(steps.ShellCommand(
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        command=['./mpbb/mpbb', '--prefix', './prefix', 'checkout',
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        command=['./mpbb/mpbb', '--prefix', jobs_mirror_prefix, 'checkout',
</span>                  '--ports-url', config['portsurl']],
         timeout=3600,
         name='checkout',
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -706,7 +707,7 @@ if 'mirror' in config['deploy']:
</span>         haltOnFailure=True))
 
     jobs_mirror_factory.addStep(steps.ShellCommand(
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        command=['./mpbb/mpbb', '--prefix', './prefix', 'mirror-distfiles', '--distfiles-dir', config['deploy']['mirror']['distfilesdir'], util.WithProperties('%(portname)s')],
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        command=['./mpbb/mpbb', '--prefix', jobs_mirror_prefix, 'mirror-distfiles', '--distfiles-dir', config['deploy']['mirror']['distfilesdir'], util.WithProperties('%(portname)s')],
</span>         name='mirror',
         description=['mirroring', 'distfiles'],
         descriptionDone=['mirror', 'distfiles']))
</pre><pre style='margin:0'>

</pre>