Skip to content

Commit

Permalink
Make script.copy() preserve symlinks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Weaver committed Oct 8, 2009
1 parent bdafdf1 commit 191c9e0
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 1 deletion.
Empty file modified bin/ve 100644 → 100755
Empty file.
Empty file modified bin/ve-clone 100644 → 100755
Empty file.
Empty file modified bin/ve-extend 100644 → 100755
Empty file.
Empty file modified bin/ve-init 100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion vecmd/script.py
Expand Up @@ -132,7 +132,7 @@ def move(*args):
return must('mv', *args)

def copy(*args):
return must('cp', '-rp', *args)
return must('cp', '-Rp', *args)

def remove(*paths):
return must('rm', '-rf', *paths)
Expand Down

0 comments on commit 191c9e0

Please sign in to comment.