mock mock.py,1.52,1.53

Michael E Brown (mebrown) fedora-extras-commits at redhat.com
Thu Jun 8 21:28:49 UTC 2006


Author: mebrown

Update of /cvs/fedora/mock
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2012

Modified Files:
	mock.py 
Log Message:
Make rm less verbose.


Index: mock.py
===================================================================
RCS file: /cvs/fedora/mock/mock.py,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- mock.py	7 Jun 2006 12:29:15 -0000	1.52
+++ mock.py	8 Jun 2006 21:28:46 -0000	1.53
@@ -183,7 +183,7 @@
             self._umount('dev/pts')
             
         if os.path.exists(self.basedir):
-            cmd = '%s -rfv %s' % (self.config['rm'], self.basedir)
+            cmd = '%s -rf %s' % (self.config['rm'], self.basedir)
             (retval, output) = self.do(cmd)
 
             if retval != 0:
@@ -688,7 +688,7 @@
         # purge the builddir, if it exists
         bd_out = '%s%s' % (self.rootdir, self.builddir)
         if os.path.exists(bd_out):
-            cmd = 'rm -rfv %s' % self.builddir
+            cmd = 'rm -rf %s' % self.builddir
             self.do_chroot(cmd, fatal=True)
     
         # create dir structure




More information about the scm-commits mailing list