From 54269f76020404bad98227475180f3a79360c94b Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Mon, 2 Nov 2020 21:35:36 +0300 Subject: [PATCH] minor improvements --- images/macos/helpers/Xcode.Installer.psm1 | 2 +- images/macos/provision/core/xcode.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/macos/helpers/Xcode.Installer.psm1 b/images/macos/helpers/Xcode.Installer.psm1 index cdc35273c..80a50eb08 100644 --- a/images/macos/helpers/Xcode.Installer.psm1 +++ b/images/macos/helpers/Xcode.Installer.psm1 @@ -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 } } diff --git a/images/macos/provision/core/xcode.ps1 b/images/macos/provision/core/xcode.ps1 index 858280dfa..3218a1094 100644 --- a/images/macos/provision/core/xcode.ps1 +++ b/images/macos/provision/core/xcode.ps1 @@ -38,7 +38,7 @@ $xcodeVersions | ForEach-Object { Write-Host "Setting default Xcode to $defaultXcode" Switch-Xcode -Version $defaultXcode -New-Item -Path "/Applications/Xcode.app" -ItemType SymbolicLink -Value (Get-XcodeRootPath -Version $defaultXcode) +New-Item -Path "/Applications/Xcode.app" -ItemType SymbolicLink -Value (Get-XcodeRootPath -Version $defaultXcode) | Out-Null Write-Host "Setting environment variables 'XCODE__DEVELOPER_DIR'" Set-XcodeDeveloperDirEnvironmentVariables -XcodeList $xcodeVersions.link \ No newline at end of file