Remove quotes since rsync doesn't accept them (and there is no shell to remove them...
authorZac Medico <zmedico@gentoo.org>
Thu, 22 Feb 2007 23:44:09 +0000 (23:44 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 22 Feb 2007 23:44:09 +0000 (23:44 -0000)
svn path=/main/trunk/; revision=6048

pym/emerge/__init__.py

index 61bd4836b1f0dc65bb723de4bbbfedc524086c81..91b265669b48a8eb34a08df8b140f87b5b107491 100644 (file)
@@ -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
                        ])