diff options
author | Jason Rassi <rassi@10gen.com> | 2013-05-28 12:41:30 -0400 |
---|---|---|
committer | Jason Rassi <rassi@10gen.com> | 2013-05-28 12:43:34 -0400 |
commit | 6d18458b1891ed2c29ab1c498d88cdc8498e7c20 (patch) | |
tree | 9a078e5c303fe1f2f6d7a75d798238f9851851a2 /buildscripts/cleanbb.py | |
parent | 710b296117ca6f1b8caf1ce24937100f09553506 (diff) | |
download | mongo-6d18458b1891ed2c29ab1c498d88cdc8498e7c20.tar.gz |
SERVER-9794 Fix cleanbb.py shouldKill() buildslave condition
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 dd52020d7e4..60d2aec37cc 100644 --- a/buildscripts/cleanbb.py +++ b/buildscripts/cleanbb.py @@ -27,7 +27,7 @@ def shouldKill( c ): if c.find( cwd ) >= 0: return True - if ( c.find( "buildbot" ) >= 0 or c.find( "slave" ) ) and c.find( "/mongo/" ) >= 0: + if ( c.find( "buildbot" ) >= 0 or c.find( "slave" ) >= 0 ) and c.find( "/mongo/" ) >= 0: return True if c.find( "xml-data/build-dir" ) >= 0: # for bamboo |