ci: upgrade tree-sitter from 0.15.2 to 0.15.9

tree-sitter-c is still at 0.15.2 though.
This commit is contained in:
Daniel Hahler 2019-10-04 16:23:48 +02:00
parent e452988960
commit 7a3602378f
1 changed files with 2 additions and 2 deletions

View File

@ -104,10 +104,10 @@ $client = new-object System.Net.WebClient
cd c:\treesitter
if ($bits -eq 32) {
$client.DownloadFile("https://github.com/tree-sitter/tree-sitter/releases/download/0.15.5/tree-sitter-windows-x86.gz","c:\treesitter\tree-sitter-cli.gz")
$client.DownloadFile("https://github.com/tree-sitter/tree-sitter/releases/download/0.15.9/tree-sitter-windows-x86.gz","c:\treesitter\tree-sitter-cli.gz")
}
elseif ($bits -eq 64) {
$client.DownloadFile("https://github.com/tree-sitter/tree-sitter/releases/download/0.15.5/tree-sitter-windows-x64.gz","c:\treesitter\tree-sitter-cli.gz")
$client.DownloadFile("https://github.com/tree-sitter/tree-sitter/releases/download/0.15.9/tree-sitter-windows-x64.gz","c:\treesitter\tree-sitter-cli.gz")
}
python -c "import gzip, shutil; f1,f2 = gzip.open('tree-sitter-cli.gz', 'rb'), open('tree-sitter.exe', 'wb'); shutil.copyfileobj(f1, f2); f2.close()"