docs(upload): append slash to ssh-deploy-root-local

Suffix ssh-deploy-root-local's path with a trailing slash (to be
consistent with upstream documentation and the example value for
ssh-deploy-root-remote right below it).

Co-authored-by: visika <visika@users.noreply.github.com>
Ref: #7513
This commit is contained in:
Henrik Lissner 2023-11-24 10:54:36 -05:00
parent 5100ab121d
commit e133da7435
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -45,7 +45,7 @@ Uses ~ssh-deploy~ to map a local folder to a remote one. Set
~ssh-deploy-root-remote~ and ~ssh-deploy-root-local~ in a =.dir-locals.el= file
to establish this mapping. E.g.
#+begin_src emacs-lisp
((nil . ((ssh-deploy-root-local . "/local/path/to/project")
((nil . ((ssh-deploy-root-local . "/local/path/to/project/")
(ssh-deploy-root-remote . "/ssh:user@server:/remote/project/")
(ssh-deploy-on-explicit-save . 1))))
#+end_src
@ -66,7 +66,7 @@ Check out [[https://github.com/cjohansson/emacs-ssh-deploy#deployment-configurat
** ~root-local~ and ~root-remote~ must match
The final directory names much match:
#+begin_src emacs-lisp
((nil . ((ssh-deploy-root-local . "/local/path/to/example-project")
((nil . ((ssh-deploy-root-local . "/local/path/to/example-project/")
(ssh-deploy-root-remote . "/ssh:user@server:/remote/example-project/")
#+end_src