From 0a57519ad76c53137e85c1bc0becf56965b46a8a Mon Sep 17 00:00:00 2001
From: Casey Rodarmor <casey@rodarmor.com>
Date: Thu, 7 Sep 2017 21:38:28 -0700
Subject: [PATCH] Update Vagrantfile: install curl, force install just (#221)

---
 Vagrantfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Vagrantfile b/Vagrantfile
index 5323f6f49c..16be045794 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -3,7 +3,7 @@ Vagrant.configure(2) do |config|
 
   config.vm.provision "shell", inline: <<-EOS
     apt-get -y update
-    apt-get install -y clang git vim
+    apt-get install -y clang git vim curl
   EOS
 
   config.vm.provision "shell", privileged: false, inline: <<-EOS
@@ -12,7 +12,7 @@ Vagrant.configure(2) do |config|
     ./install-rustup -y
     source ~/.cargo/env
     rustup target add x86_64-unknown-linux-musl
-    cargo install just
+    cargo install -f just
     git clone https://github.com/casey/just.git
   EOS
 end