mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-04 09:01:00 -05:00
* Install protoc to avoid having to recompile it * cleanup bash script call sites * move script out of worflows * cleaner script
7 lines
233 B
Bash
Executable File
7 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PB_REL="https://github.com/protocolbuffers/protobuf/releases"
|
|
curl -LO $PB_REL/download/v3.12.4/protoc-3.12.4-linux-x86_64.zip
|
|
unzip protoc-3.12.4-linux-x86_64.zip -d /tmp/protoc
|
|
sudo mv /tmp/protoc/bin/protoc /usr/bin/
|