diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-06-03 12:54:38 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-06-03 12:54:38 -0400 |
commit | 9ee37421cd2bb54215630b4cc7e4ed98f5dd5921 (patch) | |
tree | 2d05d4e4e2913080499063937e7a5fe69c35a92a /buildscripts/cleanbb.py | |
parent | 32dcad0fea3847028dd0e9430d1a697894c98795 (diff) | |
download | mongo-9ee37421cd2bb54215630b4cc7e4ed98f5dd5921.tar.gz |
freebsd fix?
Diffstat (limited to 'buildscripts/cleanbb.py')
-rw-r--r-- | buildscripts/cleanbb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/cleanbb.py b/buildscripts/cleanbb.py index a4b3597e3ee..e32f34b82da 100644 --- a/buildscripts/cleanbb.py +++ b/buildscripts/cleanbb.py @@ -14,7 +14,7 @@ def shouldKill( c ): if c.find( cwd ) >= 0: return True - if c.find( "buildbot" ) >= 0 and c.find( "/mongo/" ) >= 0: + if ( c.find( "buildbot" ) >= 0 or c.find( "slave" ) ) and c.find( "/mongo/" ) >= 0: return True return False |