Skip to content

Commit 907ba7f

Browse files
committed
Fix copyfile typo
1 parent cc4d1ab commit 907ba7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

installer/build_server.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,8 @@ 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.copyfile(desk_out, os.path.join(app_dir_path, "usr", "share", "applications"))
368+
shutil.copyfile(os.path.join(app_dir_path, "org.openshot.OpenShot.desktop"),
369+
os.path.join(app_dir_path, "usr", "share", "applications", "org.openshot.OpenShot.desktop"))
369370

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

0 commit comments

Comments
 (0)