Automatically build pafish during Vagrant initialization

This commit is contained in:
Viraj Chitnis 2019-02-16 14:23:31 +00:00
parent e5b57d942c
commit 44cb9357a2
No known key found for this signature in database
GPG Key ID: BF5C94BA44F790E2
1 changed files with 2 additions and 0 deletions

2
Vagrantfile vendored
View File

@ -66,5 +66,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y make mingw-w64
cd /vagrant/pafish
make -f Makefile.linux
SHELL
end