Skip to content

Commit 1b10cd0

Browse files
committed
Add missing curly bracket
1 parent cfd9c79 commit 1b10cd0

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

build.cake

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,10 @@ Setup(context =>
156156
}
157157

158158
// In single TFM mode we want to override the framework(s) with our desired framework
159-
if (isSingleTfmMode && isUnitTestsProjectPresent) Context.UpdateProjectTarget(unitTestsProject, DEFAULT_FRAMEWORK);
159+
if (isSingleTfmMode && isUnitTestsProjectPresent)
160+
{
161+
Context.UpdateProjectTarget(unitTestsProject, DEFAULT_FRAMEWORK);
162+
}
160163

161164
// Integration tests are intended to be used for debugging purposes and not intended to be executed in CI environment.
162165
if (removeIntegrationTests)
@@ -168,6 +171,7 @@ Setup(context =>
168171

169172
// Similarly, benchmarks are not intended to be executed in CI environment.
170173
if (removeBenchmarks)
174+
{
171175
Information("");
172176
Information("Removing benchmark project");
173177
DotNetTool(solutionFile, "sln", $"remove {benchmarkProject.TrimStart(sourceFolder, StringComparison.OrdinalIgnoreCase)}");

0 commit comments

Comments
 (0)