emacs/admin/notes/tree-sitter/build-module/batch.sh

33 lines
367 B
Bash
Executable File

#!/bin/bash
languages=(
'bash'
'c'
'cmake'
'cpp'
'css'
'c-sharp'
'dockerfile'
'elixir'
'go'
'go-mod'
'heex'
'html'
'java'
'javascript'
'json'
'lua'
'python'
'ruby'
'rust'
'toml'
'tsx'
'typescript'
'yaml'
)
for language in "${languages[@]}"
do
./build.sh $language
done