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
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ Add the `deploy` script to the site source folder:
{% highlight bash %} {% highlight bash %}
#!/bin/sh #!/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 %} {% endhighlight %}
Command line parameters are: Command line parameters are: