Merge pull request #6560 from mitchellh/sethvargo/chef_folder_names
Only append folder suffixes if we are sharing host folder paths
This commit is contained in:
commit
cdb89a9e77
|
@ -104,7 +104,9 @@ module VagrantPlugins
|
|||
end
|
||||
|
||||
# If we have specified a folder name to append then append it
|
||||
remote_path += "/#{appended_folder}" if appended_folder
|
||||
if type == :host
|
||||
remote_path += "/#{appended_folder}" if appended_folder
|
||||
end
|
||||
|
||||
# Append the result
|
||||
results << [type, local_path, remote_path]
|
||||
|
|
Loading…
Reference in New Issue