1
0
mirror of https://github.com/casey/just synced 2024-06-29 06:24:38 +00:00

Update Vagrantfile: install curl, force install just (#221)

This commit is contained in:
Casey Rodarmor 2017-09-07 21:38:28 -07:00 committed by GitHub
parent 0024dae720
commit 0a57519ad7

4
Vagrantfile vendored
View File

@ -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