Skip to content

Commit

Permalink
Fixed a mistake not seen before for some odd reason
Browse files Browse the repository at this point in the history
  • Loading branch information
bartteunis committed Jun 11, 2023
1 parent 47486e3 commit ad36ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def execute(self, context):
addon_dir = os.path.dirname(__file__)
presets_dir = addon_dir + os.sep + "presets"
dir2 = os.path.abspath(addon_dir + os.sep + ".." + os.sep + "..")
new_presets_dir = os.sep.join(dir2, "presets", "operator", ExportGMSVertexBuffer.bl_idname)
new_presets_dir = os.sep.join([dir2, "presets", "operator", ExportGMSVertexBuffer.bl_idname])

dest = shutil.copytree(presets_dir, new_presets_dir, dirs_exist_ok=True)

Expand Down

0 comments on commit ad36ecc

Please sign in to comment.