From e21e7aadbc459e7cc72fa83e2b7c926c59bdb6fd Mon Sep 17 00:00:00 2001 From: "Marek S. Lukasiewicz" Date: Thu, 20 Feb 2025 09:59:28 +0100 Subject: [PATCH] Revert deleting update_addons.py Refs: 4ddccdaf --- update_addons.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 update_addons.py diff --git a/update_addons.py b/update_addons.py new file mode 100644 index 0000000..151aea3 --- /dev/null +++ b/update_addons.py @@ -0,0 +1,11 @@ +from os import path +from shutil import copytree + +# add repository root path +root_path = path.abspath(path.dirname(__file__)) + +copytree( + path.join(root_path, 'modules', 'godot-xr-tools', 'addons'), + path.join(root_path, 'project', 'addons'), + dirs_exist_ok=True, +)