diff options
author | James Meyer <jams@linhes.org> | 2010-12-05 00:49:02 (GMT) |
---|---|---|
committer | James Meyer <jams@linhes.org> | 2010-12-05 00:49:02 (GMT) |
commit | 4f17415f31a3d37b97fbcd42623533e1548d7cf3 (patch) | |
tree | 202ac70d89e19c275829e524fe36dc08af92a95f /build_tools/bin | |
parent | f51fb708846d13222bd97b3f760eb3be902c0be0 (diff) | |
download | linhes_dev-4f17415f31a3d37b97fbcd42623533e1548d7cf3.zip |
larch8: fix pacman.conf.repos so that it's unique to each profile.
Diffstat (limited to 'build_tools/bin')
-rwxr-xr-x | build_tools/bin/sync_profiles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_tools/bin/sync_profiles.py b/build_tools/bin/sync_profiles.py index 57f6410..6bc7d8f 100755 --- a/build_tools/bin/sync_profiles.py +++ b/build_tools/bin/sync_profiles.py @@ -41,7 +41,7 @@ srcprofile=profilelist[choice] for i in profilelist: if i == srcprofile: continue - cmd = 'rsync --exclude splash.xpm.gz --exclude splash.xpm --exclude vbg.jpg --exclude=pacman.conf --delete -apv %s/%s/ %s/%s/' %(profiledir,srcprofile,profiledir,i) + cmd = 'rsync --exclude pacman.conf.repos --exclude splash.xpm.gz --exclude splash.xpm --exclude vbg.jpg --exclude=pacman.conf --delete -apv %s/%s/ %s/%s/' %(profiledir,srcprofile,profiledir,i) print cmd os.system(cmd) |