Skip to content

Commit

Permalink
Fix out of range error while installing
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthayhurst committed Feb 29, 2024
1 parent 01f99a0 commit 8c45792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/symlink-tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def checkSymlinks(buildDir):

#Pass makeSymlinks() the build and install directory
print("Installing symlinks...")
makeSymlinks(str(sys.argv[2]), str(sys.argv[4]))
makeSymlinks(str(sys.argv[2]), str(sys.argv[3]))
elif sys.argv[1] == "--check-symlinks":
#Pass checkSymlinks() the build directory
checkSymlinks(str(sys.argv[2]))

0 comments on commit 8c45792

Please sign in to comment.