Change .svn --include to an --exclude like it was supposed to be
authorAndrew Gaffney <agaffney@gentoo.org>
Thu, 7 Feb 2008 02:24:53 +0000 (02:24 +0000)
committerAndrew Gaffney <agaffney@gentoo.org>
Thu, 7 Feb 2008 02:24:53 +0000 (02:24 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1283 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/snapshot_target.py

index 8941b09e16330622844dab4f76ee9ee12083d9a8..9a53fe525869f8979da9f2b9f12c99af38bd8e9b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
 # $Id: $
 
+  07 Feb 2008; Andrew Gaffney <agaffney@gentoo.org>
+  modules/snapshot_target.py:
+  Change .svn --include to an --exclude like it was supposed to be
+
   07 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> arch/mips.py,
   catalyst:
   Added several subarches for mips so we can dump the mips subarch profiles
index 8717d720e18f64a8318fc3d280fb5ec2fbc6dbc6..8083286cd64d366c1e2bd185e76d18a4874dfdc0 100644 (file)
@@ -44,7 +44,7 @@ class snapshot_target(generic_stage_target):
                if not os.path.exists(mytmp):
                        os.makedirs(mytmp)
                
-               cmd("rsync -a --delete --exclude /packages/ --exclude /distfiles/ --exclude /local/ --exclude CVS/ --include .svn "+\
+               cmd("rsync -a --delete --exclude /packages/ --exclude /distfiles/ --exclude /local/ --exclude CVS/ --exclude .svn "+\
                        self.settings["portdir"]+"/ "+mytmp+"/portage/","Snapshot failure",env=self.env)
                
                print "Compressing Portage snapshot tarball..."