From 8ccb96b158d93ad556f9a88d7cfbb65dbdd4985f Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Sat, 6 Feb 2016 18:15:16 -0800 Subject: [PATCH] Installing gox while setting up the VM --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 83e87d8d2..b5733f353 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -62,6 +62,8 @@ sudo usermod -aG docker vagrant # Setup Nomad for development cd /opt/gopath/src/github.com/hashicorp/nomad && make updatedeps +# Install gox +go get github.com/mitchellh/gox # CD into the nomad working directory when we login to the VM grep "cd /opt/gopath/src/github.com/hashicorp/nomad" ~/.profile || echo "cd /opt/gopath/src/github.com/hashicorp/nomad" >> ~/.profile