diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-12-29 10:43:34 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-12-29 10:43:34 -0500 |
commit | b93d04c91f3e59320bef3f7eca9a8deb016089bd (patch) | |
tree | 0edb33bebbffcc7ef6051dac91dd5ea6c56d0901 /buildscripts/errorcodes.py | |
parent | 315995b8c7e3a5bd55d0248535bf5742bd7bdb7f (diff) | |
download | mongo-b93d04c91f3e59320bef3f7eca9a8deb016089bd.tar.gz |
fix nightly
Diffstat (limited to 'buildscripts/errorcodes.py')
-rw-r--r-- | buildscripts/errorcodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/errorcodes.py b/buildscripts/errorcodes.py index aee0861a093..3c177e8165a 100644 --- a/buildscripts/errorcodes.py +++ b/buildscripts/errorcodes.py @@ -8,7 +8,7 @@ def getAllSourceFiles( arr=None , prefix="." ): arr = [] for x in os.listdir( prefix ): - if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ): + if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ) or x.startswith( "mongodb-" ): continue full = prefix + "/" + x if os.path.isdir( full ): |