We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a7896 commit 409a5c1Copy full SHA for 409a5c1
installer/build-server.py
@@ -365,8 +365,12 @@ def parse_version_info(version_path):
365
shutil.copyfile("/home/ubuntu/apps/AppImageKit/desktopintegration", desktop_wrapper)
366
367
# Create symlink for AppRun
368
+ # app_run_path = os.path.join(app_dir_path, "AppRun")
369
+ # os.symlink(os.path.relpath(launcher_path, app_dir_path), app_run_path)
370
+
371
+ # Create AppRun file
372
app_run_path = os.path.join(app_dir_path, "AppRun")
- os.symlink(os.path.relpath(launcher_path, app_dir_path), app_run_path)
373
+ shutil.copyfile("/home/ubuntu/apps/AppImageKit/AppRun", app_run_path)
374
375
# Add execute bit to file mode for AppRun and scripts
376
st = os.stat(app_run_path)
0 commit comments