We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1091f4 commit 11cc7f5Copy full SHA for 11cc7f5
1 file changed
src/tools/release_script/generate_release.py
@@ -112,5 +112,5 @@ def copy_common_files(correct_task_type, dst_dir_root):
112
shutil.copy2(portable_exe, portable_dir) # copy main executable
113
shutil.copytree(PORTABLE_IN_FILES_DIR, portable_dir, dirs_exist_ok=True) # copy other resources
114
copy_common_files('portable', portable_dir) # copy common special files
115
- shutil.make_archive(portable_dir, format='zip', root_dir = portable_dir) # zip archive
+ shutil.make_archive(portable_dir, format='zip', root_dir = PORTABLE_DST_DIR, base_dir = portable_dir_name) # zip archive with folder inside
116
#'''
0 commit comments