You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(rocks): use forward slash in package.path and package.cpath
The enable() function used backslash separators (\?.lua, \?\init.lua,
\\?.ext) which only work on Windows. On Unix systems this produces
invalid paths like /usr/share/lua/5.4\?.lua.
Lua's package.path uses forward slashes on all platforms. Fix all
three patterns to use / instead of \.
0 commit comments