Revert deleting update_addons.py

Refs: 4ddccdaf
This commit is contained in:
Marek S. Łukasiewicz 2025-02-20 09:59:28 +01:00
parent 7b6b037f0d
commit e21e7aadbc

11
update_addons.py Normal file
View file

@ -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,
)