Checked source and target existence when move #4149

This commit is contained in:
Xinyu Hou 2014-11-04 13:27:47 +00:00
parent 648d9400f3
commit 546a40a653
1 changed files with 4 additions and 2 deletions

View File

@ -795,8 +795,10 @@ class InternalCommands:
os.symlink(source, target)
def move(self, source, target):
print 'move: ', source,'-->', target
shutil.move(source, target)
if os.path.exists(source):
if not os.path.exists(target):
print 'move: ', source,'-->', target
shutil.move(source, target)
def macPostMake(self, target):