aboutsummaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
authormarekpl <marek.pondel@nokia.com>2018-10-26 10:54:32 +0200
committermarekpl <marek.pondel@nokia.com>2018-10-26 10:54:32 +0200
commit083c55828e1e038bfdef04c21898b03faa869656 (patch)
tree3588d2bb678b95f5afd13fd86e789d052b0d26da /setup.sh
parent906dab0d5cd5901e0046298c44982f74298a6304 (diff)
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 <marek.pondel@nokia.com>
Diffstat (limited to 'setup.sh')
-rwxr-xr-xsetup.sh12
1 files changed, 12 insertions, 0 deletions
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