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.sh20
1 files changed, 20 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..deed18978a1
--- /dev/null
+++ b/admin/notes/tree-sitter/build-module/batch.sh
@@ -0,0 +1,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