Skip to content

Commit cc4d1ab

Browse files
committed
Fix copyfile typo
1 parent a1523e3 commit cc4d1ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installer/build_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def main():
365365
# Copy modified .desktop file to usr/share/applciations
366366
dest = os.path.join(app_dir_path, "usr", "share", "applications")
367367
os.makedirs(dest, exist_ok=True)
368-
shutil.copytree(desk_out, os.path.join(app_dir_path, "usr", "share", "applications"))
368+
shutil.copyfile(desk_out, os.path.join(app_dir_path, "usr", "share", "applications"))
369369

370370
# Rename executable launcher script
371371
launcher_path = os.path.join(app_dir_path, "usr", "bin", "openshot-qt-launch")

0 commit comments

Comments
 (0)