website/docs: note that rsync__args needs to be array [GH-3168]

This commit is contained in:
Mitchell Hashimoto 2014-03-12 18:35:57 -07:00
parent 9b5d262e29
commit 8aca71c750
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ it will tell you.
The rsync synced folder type accepts the following options:
* `rsync__args` (string or array of strings) - A list of arguments to supply
to `rsync`. By default this is "--verbose --archive --delete -z".
* `rsync__args` (array of strings) - A list of arguments to supply
to `rsync`. By default this is `["--verbose", "--archive", "--delete", "-z"]`.
* `rsync__auto` (boolean) - If false, then `rsync-auto` will not
watch and automatically sync this folder. By default, this is true.