From 66f1b25dac30ca97779e8a05e735e14230556492 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 9 May 2025 21:31:11 -0400 Subject: [PATCH] fix(upload): install ssh-deploy from emacsmirror cjohansson/emacs-ssh-deploy has inexplicably vanished, causing `doom sync` to fail when trying to install it, so we switch to a mirror. Fix: #8383 --- modules/tools/upload/packages.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/tools/upload/packages.el b/modules/tools/upload/packages.el index dea86f448..1c3c7f391 100644 --- a/modules/tools/upload/packages.el +++ b/modules/tools/upload/packages.el @@ -1,4 +1,6 @@ ;; -*- no-byte-compile: t; -*- ;;; tools/upload/packages.el -(package! ssh-deploy :pin "dc8882d1806c0fdd635bc625b109179dfa3c929c") +(package! ssh-deploy + :recipe (:host github :repo "emacsmirror/ssh-deploy") + :pin "dc8882d1806c0fdd635bc625b109179dfa3c929c")