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 3991415 commit 7ca6787Copy full SHA for 7ca6787
build-macos.cake
@@ -73,7 +73,7 @@ var netCoreProject = new {
73
Task("Install-Certificate")
74
.Does(() =>
75
{
76
- var p12Base64 = EnvironmentVariable("P12_BASE64");
+ var p12Base64 = EnvironmentVariable("P12_BASE64").Replace("\r", "").Replace("\n", "");
77
var p12Password = EnvironmentVariable("P12_PASSWORD");
78
79
if (string.IsNullOrEmpty(p12Base64))
0 commit comments