~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to bin/ivle-buildjail

ivle-buildjail: Remove some too-new rsync options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
# XXX: Shouldn't copy the compiled files at all, but compile them in the jail!
84
84
os.unlink(os.path.join(jail_site_packages, 'conf/conf.pyc'))
85
85
 
86
 
if os.spawnvp(os.P_WAIT, 'rsync', ['rsync', '-aHAX', '--delete',
 
86
if os.spawnvp(os.P_WAIT, 'rsync', ['rsync', '-a', '--delete',
87
87
              ivle.conf.jail_system_build + '/', ivle.conf.jail_system]) != 0:
88
88
    print >> sys.stderr, "Jail copying failed."
89
89
    sys.exit(1)