mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Changed to use the method versions of 'copy_file()', 'copy_tree()',
and 'make_file()'-- that way, the verbose and dry-run flags are handled for free.
This commit is contained in:
parent
bd3bdde70b
commit
4070f50537
3 changed files with 7 additions and 12 deletions
|
|
@ -33,9 +33,7 @@ class InstallPy (Command):
|
|||
|
||||
# Dump entire contents of the build directory to the installation
|
||||
# directory (that's the beauty of having a build directory!)
|
||||
copy_tree (self.build_dir, self.dir,
|
||||
verbose=self.distribution.verbose,
|
||||
update=1)
|
||||
self.copy_tree (self.build_dir, self.dir)
|
||||
|
||||
# run ()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue