diff --git a/lib/vagrant-lxc/action/share_folders.rb b/lib/vagrant-lxc/action/share_folders.rb index 660486d..2fb582f 100644 --- a/lib/vagrant-lxc/action/share_folders.rb +++ b/lib/vagrant-lxc/action/share_folders.rb @@ -13,12 +13,12 @@ module Vagrant @app.call env end - # This method returns an actual list of VirtualBox shared - # folders to create and their proper path. + # This method returns an actual list of synced folders to create and their + # proper path. def shared_folders {}.tap do |result| @env[:machine].config.vm.synced_folders.each do |id, data| - #Ignore disabled shared folders + # Ignore disabled shared folders next if data[:disabled] # This to prevent overwriting the actual shared folders data result[id] = data.dup