From 1355d692ba88df457a09b6d5cb4a94eaedceef5c Mon Sep 17 00:00:00 2001 From: Jerome Charaoui Date: Wed, 30 Dec 2020 14:26:50 -0500 Subject: [PATCH] tests: Fix rsync config in Vagrantfile --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 89e22de..c304ee0 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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