aboutsummaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
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