We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cf444f commit aed66bdCopy full SHA for aed66bd
1 file changed
Resources/Scripts/package_custom_resources.py
@@ -64,7 +64,8 @@ def moveDir(src, dst):
64
if (platform.system().lower() == "windows"):
65
src = '\\\\?\\' + os.path.abspath(src)
66
dst = '\\\\?\\' + os.path.abspath(dst)
67
- shutil.move(src, dst)
+ if os.path.abspath(src) != os.path.abspath(dst):
68
+ shutil.move(src, dst)
69
70
71
def globCopy(srcs, dst):
0 commit comments