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

Commit

Permalink
Issue #912: Fix Vagrant 1.8.6 failing to mount synced folders with em…
Browse files Browse the repository at this point in the history
…pty mount_options
  • Loading branch information
oxyc committed Nov 7, 2016
1 parent a5518f8 commit 7678931
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 7678931

Please sign in to comment.