Skip to content

Commit da42894

Browse files
committed
v1.0.10 - bugfix in folder sync
1 parent 4c6488a commit da42894

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/vagrant-vmm/scripts/sync_folders.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ if ( $sync_required )
162162
{
163163
$current += 1
164164
$file_path = $hst_path + $file
165-
$guest_path = $folder_mappings[$hst_path]
165+
$guest_path = Split-Path $folder_mappings[$hst_path] -NoQualifier
166166
$guest_path = [System.IO.Path]::GetFullPath("$($vagrant_sync_drive.root)\$guest_path")
167167
Write-progress -Activity "Syncing $hst_path with $guest_path" -PercentComplete $($current*100/$total) -Status "Copying $file"
168168
if (Test-Path $file_path -pathtype container)

lib/vagrant-vmm/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module VagrantPlugins
22
module VMM
3-
VERSION = "1.0.9"
3+
VERSION = "1.0.10"
44
end
55
end

0 commit comments

Comments
 (0)