From 26f2e43a52ce210b06a66958f74231ab041c1edf Mon Sep 17 00:00:00 2001 From: Tom Vaughan Date: Tue, 19 Nov 2013 20:36:02 -0300 Subject: [PATCH] Add new rsync `flags` option to error message. --- lib/middleman-deploy/commands.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/middleman-deploy/commands.rb b/lib/middleman-deploy/commands.rb index e55dffb..517411f 100644 --- a/lib/middleman-deploy/commands.rb +++ b/lib/middleman-deploy/commands.rb @@ -58,6 +58,8 @@ activate :deploy do |deploy| deploy.port = 5309 # clean is optional (default is false) deploy.clean = true + # flags is optional (default is -avze) + deploy.flags = "-rltgoDvzO --no-p --del -e" end # To deploy to a remote branch via git (e.g. gh-pages on github):