This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new babce5e Vagrantfile update for build dependency (#5968)
babce5e is described below
commit babce5e02c9b82ae10947ba81ef46748c6f2c85a
Author: zuquan song <[email protected]>
AuthorDate: Tue Dec 31 19:28:40 2019 -0500
Vagrantfile update for build dependency (#5968)
Fixes #5967
### Motivation
Cannot build the project successfully.
### Modifications
Add install commands to install the unzip zip tools when vm sets up
---
dev/Vagrantfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev/Vagrantfile b/dev/Vagrantfile
index f083593..db2b975 100644
--- a/dev/Vagrantfile
+++ b/dev/Vagrantfile
@@ -82,6 +82,7 @@ Vagrant.configure("2") do |config|
yum update -y
yum install -y kernel-devel
yum install -y kernel-headers
+ yum install -y unzip zip
yum install -y wget vim java-1.8.0-openjdk-devel maven docker gcc-c++
SHELL
end