Skip to content

Commit

Permalink
Issue geerlingguy#912: Fix Vagrant 1.8.6 failing to mount synced fold…
Browse files Browse the repository at this point in the history
…ers with empty mount_options
  • Loading branch information
oxyc authored and brandonratz committed Nov 18, 2016
1 parent f186a54 commit 69a1ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit 69a1ff0

Please sign in to comment.