mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
23 lines
460 B
Bash
Executable file
23 lines
460 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#
|
|
# Install dependencies that aren't available as Ubuntu packages.
|
|
#
|
|
# Everything goes into $HOME/local.
|
|
#
|
|
# Scripts should add
|
|
# - $HOME/local/bin to PATH
|
|
# - $HOME/local/lib to LD_LIBRARY_PATH
|
|
#
|
|
|
|
cd
|
|
mkdir -p local
|
|
|
|
# Install protoc
|
|
PROTOC_URL=https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip
|
|
echo $PROTOC_URL
|
|
curl -fSsL $PROTOC_URL -o protoc.zip
|
|
unzip protoc.zip -d local
|
|
|
|
# Verify installation
|
|
find local
|