From 41bb2738febcf800f5992d0d1a32c699c072e1ba Mon Sep 17 00:00:00 2001 From: Serophots Date: Fri, 17 May 2024 21:13:37 +0100 Subject: [PATCH] Fix the windows cmd ssh-keygen command The passphrase it was creating was the string literals '' rather than empty --- src/guide/access/ssh.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/access/ssh.rst b/src/guide/access/ssh.rst index c815c5c..e4ca002 100644 --- a/src/guide/access/ssh.rst +++ b/src/guide/access/ssh.rst @@ -168,7 +168,7 @@ The following command will generate a private and public SSH key pair: ssh-keygen ^ -f %userprofile%\.ssh\id_rsa_remarkable ^ - -N '' + -N "" .. code-tab:: pwsh Windows (PowerShell)