diff options
-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__": |