Skip to content

Commit

Permalink
ab#61881
Browse files Browse the repository at this point in the history
  • Loading branch information
leefine02 authored and leefine02 committed Sep 3, 2024
1 parent 3a78c95 commit e022c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CitrixAdcOrchestratorJobExtension/CitrixAdcStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ string Pemify(string ss)
privateKeyFile = new systemfile
{
filecontent = Convert.ToBase64String(privateKey),
filename = keyFileName,
filename = keyFileName.Substring(keyFileName.LastIndexOf("/") + 1),
filelocation = StorePath
};

Expand All @@ -527,7 +527,7 @@ string Pemify(string ss)
pemFile.filecontent = contents;
}

pemFile.filename = certFileName;
pemFile.filename = certFileName.Substring(certFileName.LastIndexOf("/") + 1);
pemFile.filelocation = StorePath;

return (pemFile, privateKeyFile);
Expand Down

0 comments on commit e022c33

Please sign in to comment.