mirror of
https://github.com/notwa/lips
synced 2024-11-13 22:49:04 -08:00
fix example paths
This commit is contained in:
parent
071169df48
commit
54d0ea0378
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ Even this README is incomplete.
|
|||
Copy the lips directory to somewhere Lua's `package.path` can find it.
|
||||
If you're using it locally, you will need to write something like:
|
||||
```
|
||||
package.path = package.path.."?/init.lua"
|
||||
package.path = package.path..";?/init.lua"
|
||||
```
|
||||
or `require "lips.init"` directly.
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
package.path = package.path..";./?/init.lua"
|
||||
package.path = package.path..";?/init.lua"
|
||||
local lips = require "lips"
|
||||
lips('example.asm')
|
||||
|
|
Loading…
Reference in a new issue