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

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

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