Browse Source

Final Vagrantfile

pull/1140/head
Adrian Brink 7 years ago
committed by Ethan Buchman
parent
commit
fc860c3a07
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      Vagrantfile

+ 3
- 2
Vagrantfile View File

@ -26,6 +26,7 @@ Vagrant.configure("2") do |config|
apt-get install -y docker-ce golang-1.9-go
apt-get install -y language-pack-en
# cleanup
apt-get autoremove -y
# needed for docker
@ -44,7 +45,7 @@ Vagrant.configure("2") do |config|
chown vagrant:vagrant /home/vagrant/.bash_profile
# get all deps and tools, ready to install/test
source /home/vagrant/.bash_profile
cd /home/vagrant/go/src/github.com/tendermint/tendermint && make get_tools && make get_vendor_deps
su - vagrant -c 'source /home/vagrant/.bash_profile'
su - vagrant -c 'cd /home/vagrant/go/src/github.com/tendermint/tendermint && make get_tools && make get_vendor_deps'
SHELL
end

Loading…
Cancel
Save