summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-06-02 15:14:51 -0400
committerEliot Horowitz <eliot@10gen.com>2010-06-02 15:14:51 -0400
commit456d6a28d3add143def3614982d77c609fa9276e (patch)
tree4d3f690785fc96127537f17204722731bf294add /buildscripts
parented66c6013e7f6274061ce99a774018c51b3eb2f4 (diff)
downloadmongo-456d6a28d3add143def3614982d77c609fa9276e.tar.gz
more debugging for freebsd
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/cleanbb.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/cleanbb.py b/buildscripts/cleanbb.py
index dac08d4634e..a4b3597e3ee 100644
--- a/buildscripts/cleanbb.py
+++ b/buildscripts/cleanbb.py
@@ -56,7 +56,9 @@ def cleanup( root ):
# NOTE: if we delete directories later, we can't delete diskfulltest
for ( dirpath , dirnames , filenames ) in os.walk( root , topdown=False ):
for x in filenames:
- os.remove( dirpath + "/" + x )
+ foo = dirpath + "/" + x
+ print( "removing: " + foo )
+ os.remove( foo )
if __name__ == "__main__":