mirror of
https://github.com/helix-editor/tree-house.git
synced 2025-10-06 00:12:46 +02:00
14 lines
259 B
Bash
Executable File
14 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
REMOTE=https://github.com/tree-sitter/tree-sitter.git
|
|
BRANCH=v0.25.9
|
|
|
|
rm -rf vendor
|
|
rm -rf tmp
|
|
git clone --depth 1 --branch $BRANCH $REMOTE tmp
|
|
mkdir vendor
|
|
mv tmp/lib/src vendor
|
|
mv tmp/lib/include vendor
|
|
mv tmp/LICENSE vendor
|
|
rm -rf tmp
|