minor makefile/spec tweaks

This commit is contained in:
leaf corcoran 2022-11-04 13:12:10 -07:00
parent 1ba34563f9
commit 66cc505f94
2 changed files with 4 additions and 10 deletions

View File

@ -22,6 +22,10 @@ show:
test: build
busted
build_test_outputs: build
BUILD=1 busted spec/lang_spec.moon
local: build
LUA_PATH='$(LUA_PATH_MAKE)' LUA_CPATH='$(LUA_CPATH_MAKE)' $(LUAROCKS) make --local moonscript-dev-1.rockspec

View File

@ -44,13 +44,3 @@ describe "moonscript.base", ->
`with_dev`'s require function will load the `.lua` files in the local
directory, not the `moon` ones. You're responsible for compiling them first
before running the tests.
You might do
```bash
$ make compile_system; busted
```
> `make compile_system` is a makefile task included in the repo that will build
> MoonScript in the current directory with the version installed to the system