From 23e25c40abea091d16eb00f5f53056d3e59a5e0c Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Thu, 10 Oct 2013 12:55:06 -0300 Subject: [PATCH] Copy & paste is evil --- lib/vagrant-lxc/action/share_folders.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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