Christophe Delord
Christophe Delord
The version 7.1.6 should work better on Windows. To compile scripts on Windows (native or cross-compilation) it needs curl and tar, which should be installed on recent windows versions. The...
The target list should contain these targets to be able to compile scripts: ```> luax c -t list Target Interpeter / LuaX archive --------------------- ------------------------- luax ~/.local/bin/luax lua ~/.local/bin/lua pandoc...
Ok, I think it is still a difference between Linux and Windows. Luax search for luax in PATH but may not find it on windows since the program name is...
I pushed a patch to find luax.lar on Windows. It should work better now.
LuaX redefines the `/` operator to build path, using the right path separator according to the OS (`/` or `\\`). I guess your function receives a string (containing a number)...
Your code assumes `mode` is in base 8, so the fix is `mode = tonumber(mode, 8)`. If you can use bit operations, you ca also simplify your function. E.g.: ```...