work in progress [might break]

This commit is contained in:
Leon van Kammen 2023-03-17 16:27:51 +01:00
parent e36f7d8aed
commit bc6ea7c39c

2
make
View file

@ -27,7 +27,7 @@ tests(){
which python3 && python3 test/generated/test.py src/spec/*.json | awk '{ print "py: "$0 } END{ print "\n"}'
which node && node test/generated/test.js src/spec/*.json | awk '{ print "js: "$0 } END{ print "\n"}'
} | tee /tmp/log.txt
grep error /tmp/log.txt && exit 1
grep error /tmp/log.txt && exit 1 || exit 0
}
test -z $1 && { try rm dist/* ; haxe build.hxml; exit $?; }