From: Andrew Gaffney Date: Thu, 7 Feb 2008 02:24:53 +0000 (+0000) Subject: Change .svn --include to an --exclude like it was supposed to be X-Git-Tag: CATALYST_2_0_6_916~211 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=40a979b09f82597e0515df1fc425aca8e372ca16;p=catalyst.git Change .svn --include to an --exclude like it was supposed to be git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1283 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 8941b09e..9a53fe52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 # $Id: $ + 07 Feb 2008; Andrew Gaffney + modules/snapshot_target.py: + Change .svn --include to an --exclude like it was supposed to be + 07 Feb 2008; Chris Gianelloni arch/mips.py, catalyst: Added several subarches for mips so we can dump the mips subarch profiles diff --git a/modules/snapshot_target.py b/modules/snapshot_target.py index 8717d720..8083286c 100644 --- a/modules/snapshot_target.py +++ b/modules/snapshot_target.py @@ -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..."