[Python-checkins] CVS: distutils/distutils/command bdist_dumb.py,1.13,1.14

Greg Ward python-dev@python.org
Sat, 16 Sep 2000 08:53:44 -0700


Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv20634

Modified Files:
	bdist_dumb.py 
Log Message:
Renamed --keep-tree option to --keep-temp.

Index: bdist_dumb.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/bdist_dumb.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** bdist_dumb.py	2000/09/16 15:30:47	1.13
--- bdist_dumb.py	2000/09/16 15:53:41	1.14
***************
*** 26,30 ****
                      ('format=', 'f',
                       "archive format to create (tar, ztar, gztar, zip)"),
!                     ('keep-tree', 'k',
                       "keep the pseudo-installation tree around after " +
                       "creating the distribution archive"),
--- 26,30 ----
                      ('format=', 'f',
                       "archive format to create (tar, ztar, gztar, zip)"),
!                     ('keep-temp', 'k',
                       "keep the pseudo-installation tree around after " +
                       "creating the distribution archive"),
***************
*** 41,45 ****
          self.plat_name = None
          self.format = None
!         self.keep_tree = 0
          self.dist_dir = None
  
--- 41,45 ----
          self.plat_name = None
          self.format = None
!         self.keep_temp = 0
          self.dist_dir = None
  
***************
*** 86,90 ****
                             root_dir=self.bdist_dir)
  
!         if not self.keep_tree:
              remove_tree (self.bdist_dir, self.verbose, self.dry_run)
  
--- 86,90 ----
                             root_dir=self.bdist_dir)
  
!         if not self.keep_temp:
              remove_tree (self.bdist_dir, self.verbose, self.dry_run)