build(justfile): fix the `validate` recipe
This commit is contained in:
parent
c73b33bc24
commit
3c4e1fd741
5
justfile
5
justfile
|
@ -41,7 +41,10 @@ run:
|
||||||
{{ tl }} src/awesomewm.d.tl/init.tl
|
{{ tl }} src/awesomewm.d.tl/init.tl
|
||||||
|
|
||||||
validate:
|
validate:
|
||||||
cyan check `find generated/ -type f -iname '*.d.tl' | xargs`
|
cd generated && cyan \
|
||||||
|
check \
|
||||||
|
--global-env-def "global_env" \
|
||||||
|
`find . -type f -iname '*.d.tl' | xargs`
|
||||||
|
|
||||||
# TODO : how to run a debugger on Teal code?
|
# TODO : how to run a debugger on Teal code?
|
||||||
debug:
|
debug:
|
||||||
|
|
Loading…
Reference in New Issue