From 2f27a26286d318595d5422186a5013271a6d8822 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Mon, 28 Apr 2025 21:01:08 -0700 Subject: [PATCH] rsync needs to use an explicit username. --- org.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org.el b/org.el index e3d1997..1fbe047 100644 --- a/org.el +++ b/org.el @@ -38,7 +38,7 @@ (org-publish-project "org")) (defun metacircular-upload () (interactive) - (shell-command "rsync --delete-after -auqz ~/org/publish/ web.metacircular.net:/srv/www/metacircular/")) + (shell-command "rsync --delete-after -auqz ~/org/publish/ kyle@web.metacircular.net:/srv/www/metacircular/")) (defun metacircular-deploy () (interactive) (metacircular-publish) @@ -89,7 +89,7 @@ ("C-c n p" . metacircular-publish-2) ("C-c n P" . metacircular-publish) ("C-c n u" . metacircular-upload) - ("C-c n d" . metacircular-deploy2) + ("C-c n d" . metacircular-deploy-2) ("C-c n D" . metacircular-deploy) ("C-c n w" . httpd-toggle-server)) :config @@ -225,8 +225,8 @@ :html-head "" :html-head-include-scripts nil :html-link-home "/" + :html-link-up "/n/" :html-html5-fancy t - :html-link-up "../" :publishing-directory "~/org/publish/n/" :publishing-function org-html-publish-to-html :html-head-include-default-style nil)