tests: Fix rsync config in Vagrantfile

This commit is contained in:
Jerome Charaoui 2020-12-30 14:26:50 -05:00
parent 851e319569
commit 1355d692ba

2
Vagrantfile vendored
View File

@ -17,6 +17,6 @@ Vagrant.configure("2") do |config|
SHELL
config.vm.synced_folder ".", "/vagrant", type: "rsync",
rsync__exclude: ".git/",
rsync__args: ["--delete"]
rsync__args: ["--recursive", "--delete"]
config.vm.hostname = "bntest0"
end