From b262675c91c0bc43492496ef64e283efc76b24ba Mon Sep 17 00:00:00 2001 From: David Manouchehri Date: Thu, 30 Nov 2017 13:18:49 -0500 Subject: [PATCH] Switch to ${HOME} (https://github.com/linuxkit/linuxkit/pull/2784#pullrequestreview-80242701). Signed-off-by: David Manouchehri --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 10390d3d8..db7a92b81 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,7 +18,7 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", privileged: false, inline: <<-SHELL go get -u github.com/linuxkit/linuxkit/src/cmd/linuxkit - echo "export PATH=${PATH}:/home/`whoami`/go/bin" >> ~/.bashrc + echo "export PATH=${PATH}:${HOME}/go/bin" >> ~/.bashrc SHELL %w(vmware_fusion vmware_workstation vmware_appcatalyst).each do |provider|