Skip to content

Commit 9ebca73

Browse files
committed
fixed symlink handling
1 parent bc85150 commit 9ebca73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickpkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ if __name__ == "__main__":
446446
# copy found app to payload folder
447447
app_name = os.path.basename(foundapps[0])
448448
app_path = os.path.join(payload_path, app_name)
449-
shutil.copytree(foundapps[0], app_path)
449+
shutil.copytree(foundapps[0], app_path, symlinks=True)
450450

451451
# extract version and other metadata
452452
(app_name, app_identifier, app_version) = appNameAndVersion(app_path)

0 commit comments

Comments
 (0)