Skip to content

Commit

Permalink
Explicitly indicate the key type
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Sep 23, 2024
1 parent 592a4f3 commit c1bd3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/genkeys.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function genkeys(; user="\$USER", repo="\$REPO")
# Generate the ssh key pair.
mktempdir() do path
cd(path) do
cmd = `$(sshkeygen) -N "" -C Documenter -m PEM -f $filename`
cmd = `$(sshkeygen) -t rsa -N "" -C Documenter -m PEM -f $filename`
out, err = IOBuffer(), IOBuffer()
try
run(pipeline(cmd, stdout=out, stderr=err))
Expand Down

0 comments on commit c1bd3bc

Please sign in to comment.