Skip to content

Commit 4f92705

Browse files
committed
build.ps1: correct case
Adjust the case to match; although PowerShell is case insensitive for the variable handling, it makes it easier to follow.
1 parent e58e02f commit 4f92705

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

utils/build.ps1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2515,7 +2515,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
25152515
Build-CMakeProject `
25162516
-Src $SourceCache\swift\Runtimes\Core `
25172517
-Bin $RuntimeBinaryCache `
2518-
-InstallTo "${SDKROOT}\usr" `
2518+
-InstallTo "${SDKRoot}\usr" `
25192519
-Platform $Platform `
25202520
-UseBuiltCompilers C,CXX,Swift `
25212521
-UseGNUDriver `
@@ -2543,7 +2543,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
25432543
Build-CMakeProject `
25442544
-Src $SourceCache\swift\Runtimes\Overlay `
25452545
-Bin $OverlayBinaryCache `
2546-
-InstallTo "${SDKROOT}\usr" `
2546+
-InstallTo "${SDKRoot}\usr" `
25472547
-Platform $Platform `
25482548
-UseBuiltCompilers C,CXX,Swift `
25492549
-UseGNUDriver `
@@ -2561,7 +2561,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
25612561
Build-CMakeProject `
25622562
-Src $SourceCache\swift\Runtimes\Supplemental\StringProcessing `
25632563
-Bin $StringProcessingBinaryCache `
2564-
-InstallTo "${SDKROOT}\usr" `
2564+
-InstallTo "${SDKRoot}\usr" `
25652565
-Platform $Platform `
25662566
-UseBuiltCompilers C,Swift `
25672567
-UseGNUDriver `
@@ -2579,7 +2579,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
25792579
Build-CMakeProject `
25802580
-Src $SourceCache\swift\Runtimes\Supplemental\Synchronization `
25812581
-Bin $SynchronizationBinaryCache `
2582-
-InstallTo "${SDKROOT}\usr" `
2582+
-InstallTo "${SDKRoot}\usr" `
25832583
-Platform $Platform `
25842584
-UseBuiltCompilers C,Swift `
25852585
-UseGNUDriver `
@@ -2598,7 +2598,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
25982598
Build-CMakeProject `
25992599
-Src $SourceCache\swift\Runtimes\Supplemental\Distributed `
26002600
-Bin $DistributedBinaryCache `
2601-
-InstallTo "${SDKROOT}\usr" `
2601+
-InstallTo "${SDKRoot}\usr" `
26022602
-Platform $Platform `
26032603
-UseBuiltCompilers C,CXX,Swift `
26042604
-UseGNUDriver `
@@ -2618,7 +2618,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
26182618
Build-CMakeProject `
26192619
-Src $SourceCache\swift\Runtimes\Supplemental\Observation `
26202620
-Bin $ObservationBinaryCache `
2621-
-InstallTo "${SDKROOT}\usr" `
2621+
-InstallTo "${SDKRoot}\usr" `
26222622
-Platform $Platform `
26232623
-UseBuiltCompilers CXX,Swift `
26242624
-UseGNUDriver `
@@ -2638,7 +2638,7 @@ function Build-ExperimentalRuntime([Hashtable] $Platform, [switch] $Static = $fa
26382638
Build-CMakeProject `
26392639
-Src $SourceCache\swift\Runtimes\Supplemental\Differentiation `
26402640
-Bin $DifferentiationBinaryCache `
2641-
-InstallTo "${SDKROOT}\usr" `
2641+
-InstallTo "${SDKRoot}\usr" `
26422642
-Platform $Platform `
26432643
-UseBuiltCompilers C,CXX,Swift `
26442644
-UseGNUDriver `

0 commit comments

Comments
 (0)