Skip to content

Commit 8c45792

Browse files
Fix out of range error while installing
1 parent 01f99a0 commit 8c45792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/symlink-tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def checkSymlinks(buildDir):
9797

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

0 commit comments

Comments
 (0)