Merge "Don't double quote rsync options" into feature/zuulv3

This commit is contained in:
Zuul 2017-09-25 14:59:05 +00:00 committed by Gerrit Code Review
commit 6c7638dc75
1 changed files with 3 additions and 3 deletions

View File

@ -542,9 +542,9 @@ class Job:
# want no matter how deep it is), exclude anything that
# doesn't match the thing we want or is a directory, then get
# rid of empty directories left over at the end.
rsync_opts = ['--include="%s"' % source,
'--include="*/"',
'--exclude="*"',
rsync_opts = ['--include=%s' % source,
'--include=*/',
'--exclude=*',
'--prune-empty-dirs']
return rsync_opts