Skip to content

Commit eb13518

Browse files
authored
Merge pull request #183 from wpferguson/executable_manager_fix
executable manager windows string spllit bug
2 parents 49c4406 + bf6e180 commit eb13518

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)