From b0e27d1eac5e5cf90c06f696b470cd14d4a08086 Mon Sep 17 00:00:00 2001 From: Nuno Diegues Date: Thu, 9 Dec 2021 12:47:56 +0000 Subject: [PATCH] TUN-5504: Fix upload of packages to public repo --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 798a442b..c1b0e29b 100644 --- a/Makefile +++ b/Makefile @@ -116,7 +116,7 @@ test-ssh-server: define publish_package chmod 664 cloudflared*.$(1); \ for HOST in $(CF_PKG_HOSTS); do \ - ssh-keyscan -t rsa $$HOST >> ~/.ssh/known_hosts; \ + ssh-keyscan -t ecdsa $$HOST >> ~/.ssh/known_hosts; \ scp -p -4 cloudflared*.$(1) cfsync@$$HOST:/state/cf-pkg/staging/$(2)/$(TARGET_PUBLIC_REPO)/cloudflared/; \ done endef