summaryrefslogtreecommitdiff
path: root/buildscripts/cleanbb.py
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-06-03 12:54:38 -0400
committerEliot Horowitz <eliot@10gen.com>2010-06-03 12:54:38 -0400
commit9ee37421cd2bb54215630b4cc7e4ed98f5dd5921 (patch)
tree2d05d4e4e2913080499063937e7a5fe69c35a92a /buildscripts/cleanbb.py
parent32dcad0fea3847028dd0e9430d1a697894c98795 (diff)
downloadmongo-9ee37421cd2bb54215630b4cc7e4ed98f5dd5921.tar.gz
freebsd fix?
Diffstat (limited to 'buildscripts/cleanbb.py')
-rw-r--r--buildscripts/cleanbb.py2
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