diff --git a/script/build-grammars-tarball b/script/build-grammars-tarball new file mode 100755 index 00000000..8eb6d212 --- /dev/null +++ b/script/build-grammars-tarball @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e +cd "$(dirname "$0")/.." +rm -rf ./linguist-grammars +./script/grammar-compiler compile -o linguist-grammars || true +tar -zcvf linguist-grammars.tar.gz linguist-grammars + +