Added missing single quote on rsync client side command

The rsync command was missing a single quote around the --rsh='ssh -p2222' parameter.
This commit is contained in:
Brian Jones
2016-04-19 13:59:23 -04:00
parent 9315cdb473
commit 4e09375531

View File

@@ -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 <folder> <user>@<site>:
rsync -crvz --rsh='ssh -p2222' --delete-after --delete-excluded <folder> <user>@<site>:
{% endhighlight %}
Command line parameters are: