diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-06-02 15:14:51 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-06-02 15:14:51 -0400 |
commit | 456d6a28d3add143def3614982d77c609fa9276e (patch) | |
tree | 4d3f690785fc96127537f17204722731bf294add /buildscripts/cleanbb.py | |
parent | ed66c6013e7f6274061ce99a774018c51b3eb2f4 (diff) | |
download | mongo-456d6a28d3add143def3614982d77c609fa9276e.tar.gz |
more debugging for freebsd
Diffstat (limited to 'buildscripts/cleanbb.py')
-rw-r--r-- | buildscripts/cleanbb.py | 4 |
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__": |