Code Review
/
testsuite.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
906dab0
)
fix HV-VES TA sunny scenario
01/71301/1
author
marekpl
<marek.pondel@nokia.com>
Fri, 26 Oct 2018 08:54:32 +0000
(10:54 +0200)
committer
marekpl
<marek.pondel@nokia.com>
Fri, 26 Oct 2018 08:54:32 +0000
(10:54 +0200)
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>
setup.sh
patch
|
blob
|
history
diff --git
a/setup.sh
b/setup.sh
index
0847080
..
dff5a36
100755
(executable)
--- 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