New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 82106


Ignore:
Timestamp:
08/08/11 02:30:53 (4 years ago)
Author:
jmr@…
Message:

buildmaster: don't try to add subdirs of _resources to portlist (can be in file list if the changeset also touched a port dir)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/buildbot/master.cfg

    r81625 r82106  
    143143            for f in self.build.allFiles(): 
    144144                comps = f.split('/') 
    145                 if len(comps) >= 3 and comps[0] == 'dports': 
     145                if len(comps) >= 3 and comps[0] == 'dports' and comps[1] != '_resources': 
    146146                    portset.add(comps[2]) 
    147147            portlist += ' ' + ' '.join(portset) 
Note: See TracChangeset for help on using the changeset viewer.