summaryrefslogtreecommitdiff
path: root/admin/notes/tree-sitter/build-module/batch.sh
blob: d45f37f4b648fffd100ce721b30ab7dc23d9938f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

languages=(
    'c'
    'cpp'
    'css'
    'c-sharp'
    'go'
    'html'
    'javascript'
    'json'
    'python'
    'rust'
    'typescript'
    'tsx'
)

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