Skip to content
Permalink
Browse files
build_release: Use correct path when copying dirs
  • Loading branch information
The-Compiler committed Jul 4, 2017
1 parent 7ecdd6c commit 8f03a36
Showing 1 changed file with 1 addition and 1 deletion.
@@ -109,7 +109,7 @@ def patch_osx_app():
for f in glob.glob(os.path.join(qtwe_core_dir, 'Resources', '*')):
dest = os.path.join(app_path, 'Contents', 'Resources')
if os.path.isdir(f):
dir_dest = os.path.join(dest, f)
dir_dest = os.path.join(dest, os.path.basename(f))
print("Copying directory {} to {}".format(f, dir_dest))
shutil.copytree(f, dir_dest)
else:

0 comments on commit 8f03a36

Please sign in to comment.