From 69a1ff0a2b7bd62a9d0982b109412c19b9c34cea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Sch=C3=B6ldstr=C3=B6m?= Date: Mon, 7 Nov 2016 11:35:02 -0500 Subject: [PATCH] Issue #912: Fix Vagrant 1.8.6 failing to mount synced folders with empty mount_options --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index b1ef7e722..0382b5ceb 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -108,7 +108,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| rsync__args: ['--verbose', '--archive', '--delete', '-z', '--chmod=ugo=rwX'], id: synced_folder['id'], create: synced_folder.include?('create') ? synced_folder['create'] : false, - mount_options: synced_folder.include?('mount_options') ? synced_folder['mount_options'] : nil + mount_options: synced_folder.include?('mount_options') ? synced_folder['mount_options'] : [] } if synced_folder.include?('options_override') options = options.merge(synced_folder['options_override'])