Skip to content

Commit 7ca6787

Browse files
committed
Try to fix invalid base64 secret
1 parent 3991415 commit 7ca6787

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-macos.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var netCoreProject = new {
7373
Task("Install-Certificate")
7474
.Does(() =>
7575
{
76-
var p12Base64 = EnvironmentVariable("P12_BASE64");
76+
var p12Base64 = EnvironmentVariable("P12_BASE64").Replace("\r", "").Replace("\n", "");
7777
var p12Password = EnvironmentVariable("P12_PASSWORD");
7878

7979
if (string.IsNullOrEmpty(p12Base64))

0 commit comments

Comments
 (0)