Merge pull request #5190 from thierrymarianne/master

Add missing comma in folder syncing code snippet
This commit is contained in:
Seth Vargo 2015-01-15 10:25:05 -05:00
commit 21736aa5d4
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ permissions, use `"--rsync-path='sudo rsync'"` to run rsync with sudo on the gue
<pre class="prettyprint"> <pre class="prettyprint">
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.synced_folder "bin", "/usr/local/bin", type: "rsync", config.vm.synced_folder "bin", "/usr/local/bin", type: "rsync",
rsync__exclude: ".git/" rsync__exclude: ".git/",
rsync__args: ["--verbose", "--rsync-path='sudo rsync'", "--archive", "--delete", "-z"] rsync__args: ["--verbose", "--rsync-path='sudo rsync'", "--archive", "--delete", "-z"]
end end
</pre> </pre>