1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-07 06:50:23 -08:00
emacs/admin/notes/tree-sitter/build-module/batch.sh
john muhl a0133f6345 Add Ruby to the tree-sitter build-module script
* admin/notes/tree-sitter/build-module/batch.sh (languages): Add
Ruby.  (Bug#65739)
2024-01-10 22:41:44 +01:00

32 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