TeaWeb/tools/build_trgen.sh

8 lines
146 B
Bash
Raw Normal View History

2018-12-26 13:17:12 +00:00
#!/usr/bin/env bash
npm run compile-tr-gen
2018-12-26 13:17:12 +00:00
if [ $? -ne 0 ]; then
echo "Failed to build typescript translation generator"
exit 1
fi
exit 0