Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/Proton.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Eikum <aeikum@codeweavers.com>2021-08-23 20:30:03 +0300
committerAndrew Eikum <aeikum@codeweavers.com>2021-08-23 20:30:03 +0300
commit79ddcc55688fffae9a74f230d825b1dbd6db82a9 (patch)
treee6ecc916099cf7d9a0d94fe2cb3abdf5b0d6a77a
parentb5646c407277c5ff4e01be724f8c420ebcf8422c (diff)
proton: Don't copy metadata by defaultproton-6.3-6c
-rwxr-xr-xproton2
1 files changed, 1 insertions, 1 deletions
diff --git a/proton b/proton
index 11752c7d..dcad0ce4 100755
--- a/proton
+++ b/proton
@@ -108,7 +108,7 @@ def merge_user_dir(src, dst):
else:
extant_dirs += dst_dir
-def try_copy(src, dst, add_write_perm=True, copy_metadata=True, optional=False):
+def try_copy(src, dst, add_write_perm=True, copy_metadata=False, optional=False):
try:
if os.path.isdir(dst):
dstfile = dst + "/" + os.path.basename(src)