Explorar o código

Vagrantfile: rsync symlinks as symlinks, fixes #592

Thomas Waldmann %!s(int64=9) %!d(string=hai) anos
pai
achega
777fc89d3f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -273,7 +273,7 @@ end
 
 Vagrant.configure(2) do |config|
   # use rsync to copy content to the folder
-  config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync"
+  config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"]
   # do not let the VM access . on the host machine via the default shared folder!
   config.vm.synced_folder ".", "/vagrant", disabled: true