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

« back to all changes in this revision

Viewing changes to setup/setuputil.py

  • Committer: wagrant
  • Date: 2008-09-18 08:49:50 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1049
setup.setuputil: Print the fake cp -r before the copy, not the removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    try:
126
126
        action_runprog(RSYNC, ['-a','--delete',src + '/',dst], dry)
127
127
    except RunError:
128
 
        print "cp -r", src, dst
129
128
        if dry: return
130
129
        action_remove(dst, dry)
 
130
        print "cp -r", src, dst
131
131
        shutil.copytree(src, dst, True)
132
132
 
133
133
def action_copylist(srclist, dst, dry, srcdir="."):