Skip to content

Commit aed66bd

Browse files
committed
Compilation fix
1 parent 7cf444f commit aed66bd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Resources/Scripts/package_custom_resources.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ def moveDir(src, dst):
6464
if (platform.system().lower() == "windows"):
6565
src = '\\\\?\\' + os.path.abspath(src)
6666
dst = '\\\\?\\' + os.path.abspath(dst)
67-
shutil.move(src, dst)
67+
if os.path.abspath(src) != os.path.abspath(dst):
68+
shutil.move(src, dst)
6869

6970

7071
def globCopy(srcs, dst):

0 commit comments

Comments
 (0)