From 0b81b21983b3c36c9467b4e5140e658e971b1059 Mon Sep 17 00:00:00 2001 From: Ashe Connor Date: Tue, 12 Dec 2017 19:41:21 +1100 Subject: [PATCH] Grammar compiler invocation fix (#3945) * Correct grammar-compiler invocation in build_gem /cc @vmg * || true so we can release with broken grammars --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index aaf70258..d047a6f5 100644 --- a/Rakefile +++ b/Rakefile @@ -56,7 +56,7 @@ end task :build_gem => :samples do rm_rf "grammars" - sh "script/convert-grammars" + sh "script/grammar-compiler compile -o grammars || true" languages = YAML.load_file("lib/linguist/languages.yml") File.write("lib/linguist/languages.json", Yajl.dump(languages)) `gem build github-linguist.gemspec`