Skip to content

Commit b96ab2a

Browse files
committed
Fixing relative symlink syntax
1 parent 3ad560d commit b96ab2a

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
@@ -367,7 +367,7 @@ def parse_version_info(version_path):
367367

368368
# Create symlink for AppRun
369369
app_run_path = os.path.join(app_dir_path, "AppRun")
370-
os.symlink(os.path.relpath(launcher_path, app_run_path), app_run_path)
370+
os.symlink(os.path.relpath(launcher_path, app_dir_path), app_run_path)
371371

372372
# Add execute bit to file mode for AppRun and scripts
373373
st = os.stat(app_run_path)

0 commit comments

Comments
 (0)