changeset 34:14c791d8db59

pass the dest to clobber for tarball
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 15 Nov 2011 11:57:32 -0800
parents 60bda84b3b32
children d9b9c4599a3d
files fetch.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/fetch.py	Tue Nov 15 11:54:18 2011 -0800
+++ b/fetch.py	Tue Nov 15 11:57:32 2011 -0800
@@ -83,7 +83,7 @@
     type = 'tar'
 
     def __call__(self, dest):
-        self.clobber()
+        self.clobber(dest)
         if os.path.exists(dest):
             assert os.path.isdir(dest), "Destination must be a directory"
         else: