From d87c181aea740a5a628d5689c4e5d034ec640656 Mon Sep 17 00:00:00 2001 From: Oscar Marshall Date: Sat, 27 Jan 2024 00:17:57 -0800 Subject: [PATCH] fix(upload): ssh-deploy-on-explicit-save = 1 #7513 changed the expected value of `ssh-deploy-on-explicit-save` to be #an integer, but the default value was still `t`. This commit changes it #to be `1`. Amend: #7513 --- modules/tools/upload/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/tools/upload/config.el b/modules/tools/upload/config.el index 25e2829be..6592e4331 100644 --- a/modules/tools/upload/config.el +++ b/modules/tools/upload/config.el @@ -7,7 +7,7 @@ ;; Example: ;; ((nil . ((ssh-deploy-root-local . "/local/path/to/project") ;; (ssh-deploy-root-remote . "/ssh:user@server:/remote/project/") -;; (ssh-deploy-on-explicit-save . t)))) +;; (ssh-deploy-on-explicit-save . 1)))) ;; ;; Note: `ssh-deploy-root-local' is optional, and will resort to ;; `doom-project-root' if unspecified. @@ -20,7 +20,7 @@ ssh-deploy-remote-changes-handler) :init (setq ssh-deploy-revision-folder (concat doom-cache-dir "ssh-revisions/") - ssh-deploy-on-explicit-save t + ssh-deploy-on-explicit-save 1 ssh-deploy-automatically-detect-remote-changes nil) ;; Make these safe as file-local variables