Only append folder suffixes if we are sharing host folder paths
Fixes GH-6472
This commit is contained in:
parent
66c99ddb70
commit
1fd9aec493
|
@ -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