From 4e0937553152a9cf4c0e4385bc0aa6675c8a68bc Mon Sep 17 00:00:00 2001 From: Brian Jones Date: Tue, 19 Apr 2016 13:59:23 -0400 Subject: [PATCH] Added missing single quote on rsync client side command The rsync command was missing a single quote around the --rsh='ssh -p2222' parameter. --- site/_docs/deployment-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/_docs/deployment-methods.md b/site/_docs/deployment-methods.md index 4a828ef8..7ec7546f 100644 --- a/site/_docs/deployment-methods.md +++ b/site/_docs/deployment-methods.md @@ -142,7 +142,7 @@ Add the `deploy` script to the site source folder: {% highlight bash %} #!/bin/sh -rsync -crvz --rsh=ssh -p2222' --delete-after --delete-excluded @: +rsync -crvz --rsh='ssh -p2222' --delete-after --delete-excluded @: {% endhighlight %} Command line parameters are: