Skip to content

Commit 1e2ce45

Browse files
brettfobaronfel
authored andcommitted
fix build variable typo (#6382)
1 parent 93e3154 commit 1e2ce45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/build-utils.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $binaryLog = if (Test-Path variable:binaryLog) { $binaryLog } else { $false }
1313
$nodeReuse = if (Test-Path variable:nodeReuse) { $nodeReuse } else { $false }
1414
$bootstrapDir = if (Test-Path variable:bootstrapDir) { $bootstrapDir } else { "" }
1515
$bootstrapConfiguration = if (Test-Path variable:bootstrapConfiguration) { $bootstrapConfiguration } else { "Proto" }
16-
$bootstrapTrm = if (Test-Path variable:bootstrapTfm) { $bootstrapConfiguration } else { "net46" }
16+
$bootstrapTfm = if (Test-Path variable:bootstrapTfm) { $bootstrapTfm } else { "net46" }
1717
$properties = if (Test-Path variable:properties) { $properties } else { @() }
1818

1919
function GetProjectOutputBinary([string]$fileName, [string]$projectName = "", [string]$configuration = $script:configuration, [string]$tfm = "net46", [string]$rid = "", [bool]$published = $false) {

0 commit comments

Comments
 (0)