Skip to content

Commit bf6e180

Browse files
committed
Fixed bug that caused the lua executale path to not split correctly on windows. Preferences are stored internally with forward slashes, not O/S specific path separators.
1 parent 49c4406 commit bf6e180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/executable_manager.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ local exec_table = {}
112112

113113
for _,pref in ipairs(matches) do
114114
local parts = du.split(pref, "=")
115-
local tmp = du.split(parts[1], PS)
115+
local tmp = du.split(parts[1], "/") -- preferences are stored with forward slashes
116116
table.insert(exec_table, tmp[#tmp])
117117
end
118118

0 commit comments

Comments
 (0)