aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-10-26 14:17:36 +0000
committerGerrit Code Review <gerrit@onap.org>2018-10-26 14:17:36 +0000
commita59a6127bf8adcb428392e320ef298c26d1bad0c (patch)
treed07313e0806f32a857d338659851bb6a71a7bc81
parent855a5a548be91923333ba15bf7c64ae8ae64db05 (diff)
parent083c55828e1e038bfdef04c21898b03faa869656 (diff)
Merge "fix HV-VES TA sunny scenario"
-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