minor improvements

This commit is contained in:
Maxim Lobanov
2020-11-02 21:35:36 +03:00
parent 74483e93da
commit 54269f7602
2 changed files with 2 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ function Build-ProvisionatorSymlink {
$targetVersion = [SemVer]::Parse($versionInfo.Version).ToString()
$targetPath = Get-XcodeRootPath -Version $targetVersion
if ($sourcePath -ne $targetPath) {
Write-Host "Creating provisionator symlink: '$targetPath' -> '$sourcePath'"
Write-Host "Creating symlink: '$targetPath' -> '$sourcePath'"
New-Item -Path $targetPath -ItemType SymbolicLink -Value $sourcePath | Out-Null
}
}