[CI] Stop Wheel Builds from Spamming Logs (#15640)

This commit is contained in:
Simon Mo 2021-05-04 14:19:50 -07:00 committed by GitHub
parent 1d52ab819f
commit e2546c9d3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -306,7 +306,6 @@ def move_file(target_dir, filename):
# Create the target directory if it doesn't already exist.
os.makedirs(os.path.dirname(destination), exist_ok=True)
if not os.path.exists(destination):
print("Copying {} to {}.".format(source, destination))
if sys.platform == "win32":
# Does not preserve file mode (needed to avoid read-only bit)
shutil.copyfile(source, destination, follow_symlinks=True)