From 951a3c90398f219cac4856b7350dbef1087fffac Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Mon, 10 Dec 2018 10:38:16 -0600 Subject: [PATCH] VagrantFile: Don't sync .git --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 90a629ba..f56a6d90 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -14,7 +14,7 @@ Vagrant.configure(2) do |config| #set up shared and rsynced folders config.vm.synced_folder "./vagrant_share/", "/vagrant/", id: "share", create: true - config.vm.synced_folder ".", "/home/vagrant/proton", id: "proton", type: "rsync", rsync__exclude: ["/output/", "vagrant_share"], rsync__args: ["--verbose", "--archive", "-z", "--links", "--update"] + config.vm.synced_folder ".", "/home/vagrant/proton", id: "proton", type: "rsync", rsync__exclude: [".git/", "/output/", "vagrant_share"], rsync__args: ["--verbose", "--archive", "-z", "--links", "--update"] #this is where the VM is initialized on first setup config.vm.provision "shell", privileged: "true", inline: <<-SHELL