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:
Greg Ward 1999-04-04 02:46:29 +00:00
parent bd3bdde70b
commit 4070f50537
3 changed files with 7 additions and 12 deletions

View file

@ -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 ()