aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update-parsers.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update-parsers.lua')
-rwxr-xr-xscripts/update-parsers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-parsers.lua b/scripts/update-parsers.lua
index ec1308d77..83f54e9da 100755
--- a/scripts/update-parsers.lua
+++ b/scripts/update-parsers.lua
@@ -8,7 +8,7 @@ local updates = {} ---@type string[]
-- check for new revisions
for k, p in pairs(parsers) do
- if p.tier < 5 and p.install_info then
+ if p.tier <= 2 and p.install_info then
print('Updating ' .. k)
jobs[k] = vim.system({ 'git', 'ls-remote', p.install_info.url })
end