diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 787fd7180..5b9800716 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,6 +44,9 @@ Run `bash scripts/glide/status.sh` to get a list of vendored dependencies that m If you are a [Vagrant](https://www.vagrantup.com/) user, all you have to do to get started hacking Tendermint is: +In case you installed Vagrant in 2017, you might need to run +`vagrant box update` to upgrade to the latest `ubuntu/xenial64`. + ``` vagrant up vagrant ssh @@ -97,4 +100,4 @@ especially `go-p2p` and `go-rpc`, as their versions are referenced in tendermint - push to hotfix-vX.X.X to run the extended integration tests on the CI - merge hotfix-vX.X.X to master - merge hotfix-vX.X.X to develop -- delete the hotfix-vX.X.X branch \ No newline at end of file +- delete the hotfix-vX.X.X branch diff --git a/Vagrantfile b/Vagrantfile index 3979c7792..ee878649d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -36,6 +36,7 @@ Vagrant.configure("2") do |config| echo 'export PATH=$PATH:/usr/lib/go-1.9/bin:/home/vagrant/go/bin' >> /home/vagrant/.bash_profile echo 'export GOPATH=/home/vagrant/go' >> /home/vagrant/.bash_profile echo 'export LC_ALL=en_US.UTF-8' >> /home/vagrant/.bash_profile + echo 'cd go/src/github.com/tendermint/tendermint' >> /home/vagrant/.bash_profile mkdir -p /home/vagrant/go/bin mkdir -p /home/vagrant/go/src/github.com/tendermint