From: Zac Medico Date: Thu, 22 Feb 2007 23:46:39 +0000 (-0000) Subject: Remove quotes since rsync doesn't accept them (and there is no shell to remove them... X-Git-Tag: v2.1.2.1~38 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7b5aeab56907970403b8c7572d2b7ace26aa133f;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). (trunk r6047:6048) svn path=/main/branches/2.1.2/; revision=6050 --- diff --git a/bin/emerge b/bin/emerge index 7904c3cdb..8d9b7ccb0 100755 --- a/bin/emerge +++ b/bin/emerge @@ -3734,9 +3734,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 ])