Skip to content

Commit

Permalink
Merge branch 'hotfix/0.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pvandervelde committed Jul 17, 2017
2 parents d9d83fb + 28e4084 commit 989573d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions deploy.settings.props
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,6 @@
</PostSteps>
</DeployStepsToExecute>

<!--
<DeployStepsToExecute Include="$(DeployStepsPrepareReleaseNotes)">
<Properties>
</Properties>
Expand All @@ -356,7 +355,6 @@
<PostSteps>
</PostSteps>
</DeployStepsToExecute>
-->
<!--
<DeployStepsToExecute Include="$(DeployStepsPrepareTagVcs)">
<Properties>
Expand Down Expand Up @@ -535,7 +533,6 @@
<!--
The last step is pushing to NuGet because we can't remove packages from NuGet
-->
<!--
<DeployStepsToExecute
Condition=" '$(IsMasterBranch)' == 'true' "
Include="$(DeployStepsPushToNuget)">
Expand All @@ -552,7 +549,6 @@
<PostSteps>
</PostSteps>
</DeployStepsToExecute>
-->
</ItemGroup>

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@ private string[] UnmergedCommits()
{
string.Format(CultureInfo.InvariantCulture, "cherry {0}", MergeTargetBranch)
});
return gitOutput.Replace("+ ", Environment.NewLine).Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
return gitOutput
.Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries)
.Where(l => l.StartsWith("+ ", StringComparison.OrdinalIgnoreCase))
.Select(l => l.Replace("+ ", string.Empty))
.ToArray();
}
}
}

0 comments on commit 989573d

Please sign in to comment.