Skip to content

Commit

Permalink
Fix copyfile typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Nov 29, 2022
1 parent cc4d1ab commit 907ba7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion installer/build_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ def main():
# Copy modified .desktop file to usr/share/applciations
dest = os.path.join(app_dir_path, "usr", "share", "applications")
os.makedirs(dest, exist_ok=True)
shutil.copyfile(desk_out, os.path.join(app_dir_path, "usr", "share", "applications"))
shutil.copyfile(os.path.join(app_dir_path, "org.openshot.OpenShot.desktop"),
os.path.join(app_dir_path, "usr", "share", "applications", "org.openshot.OpenShot.desktop"))

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

0 comments on commit 907ba7f

Please sign in to comment.