We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c6488a commit da42894Copy full SHA for da42894
lib/vagrant-vmm/scripts/sync_folders.ps1
@@ -162,7 +162,7 @@ if ( $sync_required )
162
{
163
$current += 1
164
$file_path = $hst_path + $file
165
- $guest_path = $folder_mappings[$hst_path]
+ $guest_path = Split-Path $folder_mappings[$hst_path] -NoQualifier
166
$guest_path = [System.IO.Path]::GetFullPath("$($vagrant_sync_drive.root)\$guest_path")
167
Write-progress -Activity "Syncing $hst_path with $guest_path" -PercentComplete $($current*100/$total) -Status "Copying $file"
168
if (Test-Path $file_path -pathtype container)
lib/vagrant-vmm/version.rb
@@ -1,5 +1,5 @@
1
module VagrantPlugins
2
module VMM
3
- VERSION = "1.0.9"
+ VERSION = "1.0.10"
4
end
5
0 commit comments