From: Zac Medico Date: Thu, 22 Feb 2007 23:44:09 +0000 (-0000) Subject: Remove quotes since rsync doesn't accept them (and there is no shell to remove them... X-Git-Tag: v2.2_pre1~1657 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e3f64e64361bfdf62f5548c66542e1f51ad8c919;p=portage.git Remove quotes since rsync doesn't accept them (and there is no shell to remove them since we use spawn() for rsync now). svn path=/main/trunk/; revision=6048 --- diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 61bd4836b..91b265669 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -3795,9 +3795,9 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): "--delete-after", # Delete only after everything else is done "--stats", # Show final statistics about what was transfered "--timeout="+str(mytimeout), # IO timeout if not done in X seconds - "--exclude='/distfiles'", # Exclude distfiles from consideration - "--exclude='/local'", # Exclude local from consideration - "--exclude='/packages'", # Exclude packages from consideration + "--exclude=/distfiles", # Exclude distfiles from consideration + "--exclude=/local", # Exclude local from consideration + "--exclude=/packages", # Exclude packages from consideration "--filter=H_**/files/digest-*" # Exclude manifest1 digests and delete on the receiving side ])