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:
parent
9315cdb473
commit
4e09375531
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue