Skip to content

Commit 726f5d0

Browse files
Correct pipeline logging statement (#51)
Currently, the pipeline reports errors parsing the `SimulateReleaseBuild` variable when it is parsing the `IsReleaseBuild`. This patches the logging statement.
1 parent efc56c4 commit 726f5d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ steps:
5555
$isReleaseBuild = $false
5656
if (-not([bool]::TryParse($env:IsReleaseBuild, [ref] $isReleaseBuild)))
5757
{
58-
throw "SimulateReleaseBuild can only be set to true or false."
58+
throw "IsReleaseBuild can only be set to true or false."
5959
}
6060
6161
# We only generate an SBOM for release or simulated release builds

0 commit comments

Comments
 (0)