Skip to content

Commit

Permalink
Merge pull request #149 from blitzmann/issue148
Browse files Browse the repository at this point in the history
Fix issue where Join-Path doesn't work if using a drive that doesn't …
  • Loading branch information
sanderstad authored Jan 8, 2022
2 parents 017fa85 + a2e71a4 commit b2409bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/clone/New-DcnClone.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@
}

# Setup access path location
$accessPath = Join-PSFPath -Path $Destination -Child $mountDirectory
$accessPath = [System.IO.Path]::Combine($Destination, $mountDirectory)

# Check if access path is already present
if ($PSCmdlet.ShouldProcess($accessPath, "Testing existence access path $accessPath and create it")) {
Expand Down Expand Up @@ -382,7 +382,7 @@
}

# Check if the clone vhd does not yet exist
$clonePath = Join-PSFPath -Path $Destination -Child "$($CloneName).vhdx"
$clonePath = [System.IO.Path]::Combine($Destination, "$($CloneName).vhdx")
if ($computer.IsLocalhost) {
if (Test-Path -Path "$($clonePath)" -Credential $DestinationCredential) {
Stop-PSFFunction -Message "Clone $CloneName already exists" -Target $accessPath -Continue
Expand Down

0 comments on commit b2409bb

Please sign in to comment.