We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf6dd21 commit f019dc4Copy full SHA for f019dc4
GitFlowVersion/BuildServers/TeamCity.cs
@@ -32,6 +32,10 @@ public string GenerateSetVersionMessage(string versionToUseForBuildNumber)
32
33
static string EscapeValue(string value)
34
{
35
+ if (value == null)
36
+ {
37
+ return null;
38
+ }
39
// List of escape values from http://confluence.jetbrains.com/display/TCD8/Build+Script+Interaction+with+TeamCity
40
41
value = value.Replace("|", "||");
0 commit comments