Skip to content

Commit

Permalink
(GH-528) Fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Jul 14, 2020
1 parent bb1047a commit 111bd69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cake.Recipe/Content/parameters.cake
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public static class BuildParameters
public static string MasterBranchName { get; private set; }
public static string DevelopBranchName { get; private set; }

public static string IsRunningIntegrationTests
public static bool IsRunningIntegrationTests
{
get
{
return string.Equals(BuildParameters.Target, "Run-Integration-Tests", StringComparison.OrdinalIgnoreCase)
return string.Equals(BuildParameters.Target, "Run-Integration-Tests", StringComparison.OrdinalIgnoreCase);
}
}

Expand Down

0 comments on commit 111bd69

Please sign in to comment.