diff options
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) |