1
1
mirror of https://github.com/codota/TabNine.git synced 2024-08-16 13:30:53 +03:00
TabNine/dl_binaries.sh
amircodota 0d1dcef557
Update instructions for m1 (#323)
* add gitignore

* download apple aarch64 binary (for m1)

* fix code snippet for selecting tabnine binary

* fix

* add note for m1 support
2021-01-17 11:01:38 +02:00

26 lines
699 B
Bash
Executable File

#!/bin/sh
set -e
# This script downloads the binaries for the most recent version of TabNine.
version="$(curl -sS https://update.tabnine.com/bundles/version)"
targets='i686-pc-windows-gnu
i686-unknown-linux-musl
x86_64-apple-darwin
aarch64-apple-darwin
x86_64-pc-windows-gnu
x86_64-unknown-linux-musl'
rm -rf ./binaries
echo "$targets" | while read target
do
mkdir -p binaries/$version/$target
path=$version/$target
echo "downloading $path"
curl -sS https://update.tabnine.com/bundles/$path/TabNine.zip > binaries/$path/TabNine.zip
unzip -o binaries/$path/TabNine.zip -d binaries/$path
rm binaries/$path/TabNine.zip
chmod +x binaries/$path/*
done