Skip to content
Snippets Groups Projects
Unverified Commit 36af7e34 authored by Rick van Galen's avatar Rick van Galen Committed by GitHub
Browse files

fix(git): Trim whitespace around private key data (#9856)

parent ae8a60ee
Branches
Tags
No related merge requests found
......@@ -9,7 +9,7 @@ let gitPrivateKey: string;
let keyId: string;
export function setPrivateKey(key: string): void {
gitPrivateKey = key;
gitPrivateKey = key?.trim();
}
async function importKey(): Promise<void> {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment