summaryrefslogtreecommitdiff
path: root/admin/notes/tree-sitter/build-module/batch.sh
blob: 9988d1eae4e6b9ba2ab5ca68c259be5d5f354109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash

languages=(
    'bash'
    'c'
    'cmake'
    'cpp'
    'css'
    'c-sharp'
    'dockerfile'
    'elixir'
    'go'
    'go-mod'
    'heex'
    'html'
    'java'
    'javascript'
    'json'
    'lua'
    'python'
    'rust'
    'toml'
    'tsx'
    'typescript'
    'yaml'
)

for language in "${languages[@]}"
do
    ./build.sh $language
done