From 083c55828e1e038bfdef04c21898b03faa869656 Mon Sep 17 00:00:00 2001 From: marekpl Date: Fri, 26 Oct 2018 10:54:32 +0200 Subject: fix HV-VES TA sunny scenario there's need to have protobuf compiler to be installed by setup.sh Issue-ID: INT-650 Change-Id: Id1629842a3745941f1b4d1389e22d829d314aede Signed-off-by: marekpl --- setup.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/setup.sh b/setup.sh index 0847080f..dff5a36f 100755 --- a/setup.sh +++ b/setup.sh @@ -109,3 +109,15 @@ case $OS in Linux) apt-get -y install kafkacat esac + + +# +# Install protobuf +# +OS=`uname -s` +case $OS in + Darwin) + brew install protobuf ;; + Linux) + apt-get -y install protobuf-compiler +esac -- cgit 1.2.3-korg