Skip to content
This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Commit 835ffe5

Browse files
authored
Merge pull request #975 from oxyc/issue-912
Issue #912: Fix Vagrant 1.8.6 failing to mount synced folders with empty mount_options
2 parents a5518f8 + 7678931 commit 835ffe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
108108
rsync__args: ['--verbose', '--archive', '--delete', '-z', '--chmod=ugo=rwX'],
109109
id: synced_folder['id'],
110110
create: synced_folder.include?('create') ? synced_folder['create'] : false,
111-
mount_options: synced_folder.include?('mount_options') ? synced_folder['mount_options'] : nil
111+
mount_options: synced_folder.include?('mount_options') ? synced_folder['mount_options'] : []
112112
}
113113
if synced_folder.include?('options_override')
114114
options = options.merge(synced_folder['options_override'])

0 commit comments

Comments
 (0)