summaryrefslogtreecommitdiff
path: root/admin/notes/tree-sitter/build-module/batch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'admin/notes/tree-sitter/build-module/batch.sh')
-rwxr-xr-xadmin/notes/tree-sitter/build-module/batch.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/admin/notes/tree-sitter/build-module/batch.sh b/admin/notes/tree-sitter/build-module/batch.sh
new file mode 100755
index 00000000000..012b5882e83
--- /dev/null
+++ b/admin/notes/tree-sitter/build-module/batch.sh
@@ -0,0 +1,32 @@
+#!/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