Skip to content

Commit

Permalink
Remove dot char entirely from suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Aug 3, 2016
1 parent 98fbf11 commit 428a897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if (BuildSystem.IsRunningOnAppVeyor)
if (suffix.Length > 21)
suffix = suffix.Substring(0, 21);

suffix = suffix.Replace(".", "_");
suffix = suffix.Replace(".", "");

packageVersion = version + suffix;
}
Expand Down

0 comments on commit 428a897

Please sign in to comment.