1
1
mirror of https://github.com/codota/TabNine.git synced 2024-08-16 21:40:23 +03:00
TabNine/dl_binaries.sh
yonip23 6e83bb75e6
remove linux 32 bit support (#500)
* remove linux 32 bit support

* add supported architectures to readme
2022-01-05 14:27:03 +02:00

25 lines
671 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
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