rsync needs to use an explicit username.
This commit is contained in:
parent
cda7afdc81
commit
2f27a26286
6
org.el
6
org.el
|
@ -38,7 +38,7 @@
|
||||||
(org-publish-project "org"))
|
(org-publish-project "org"))
|
||||||
|
|
||||||
(defun metacircular-upload () (interactive)
|
(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)
|
(defun metacircular-deploy () (interactive)
|
||||||
(metacircular-publish)
|
(metacircular-publish)
|
||||||
|
@ -89,7 +89,7 @@
|
||||||
("C-c n p" . metacircular-publish-2)
|
("C-c n p" . metacircular-publish-2)
|
||||||
("C-c n P" . metacircular-publish)
|
("C-c n P" . metacircular-publish)
|
||||||
("C-c n u" . metacircular-upload)
|
("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 D" . metacircular-deploy)
|
||||||
("C-c n w" . httpd-toggle-server))
|
("C-c n w" . httpd-toggle-server))
|
||||||
:config
|
:config
|
||||||
|
@ -225,8 +225,8 @@
|
||||||
:html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"/s/main.css\" />"
|
:html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"/s/main.css\" />"
|
||||||
:html-head-include-scripts nil
|
:html-head-include-scripts nil
|
||||||
:html-link-home "/"
|
:html-link-home "/"
|
||||||
|
:html-link-up "/n/"
|
||||||
:html-html5-fancy t
|
:html-html5-fancy t
|
||||||
:html-link-up "../"
|
|
||||||
:publishing-directory "~/org/publish/n/"
|
:publishing-directory "~/org/publish/n/"
|
||||||
:publishing-function org-html-publish-to-html
|
:publishing-function org-html-publish-to-html
|
||||||
:html-head-include-default-style nil)
|
:html-head-include-default-style nil)
|
||||||
|
|
Loading…
Reference in New Issue