Skip to content

Commit f699a47

Browse files
committed
Make sure we use a pem format when generating a private key.
1 parent 1ee0eb7 commit f699a47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils/exchange-bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ git init && git remote add origin "${REPO_URL}"
5353

5454
# Generate a keypair
5555
echo "Generating random private SSH key"
56-
ssh-keygen -b 2048 -t rsa -f "/tmp/${PACK}_rsa" -q -N ""
56+
ssh-keygen -b 2048 -t rsa -f "/tmp/${PACK}_rsa" -q -N "" -m pem
5757

5858
# GitHub: create a repo or create an alias and move
5959
if git ls-remote "${ALIAS_URL}" > /dev/null 2>&1;

0 commit comments

Comments
 (0)