From 85ba302fe09a0c5a0227e907eca90e516b7321e2 Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Fri, 6 Mar 2026 22:42:10 -0600 Subject: [PATCH 1/2] Updated .gitignore Added ignore for addons/gdata_orm, as this will be handled by a script from the submodules folder. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 47091836..e3213fe9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ # Godot 4+ specific ignores .godot/ +addons/gdata_orm From 3186e514e6453cb3f5d533de10b98ac0bd223e4b Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Fri, 6 Mar 2026 22:42:37 -0600 Subject: [PATCH 2/2] Created Update Addons Script Created script to copy over addons from the submodules folder, to the addons folder. --- submodules/update_addons.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 submodules/update_addons.sh diff --git a/submodules/update_addons.sh b/submodules/update_addons.sh new file mode 100755 index 00000000..1e844c01 --- /dev/null +++ b/submodules/update_addons.sh @@ -0,0 +1,14 @@ +#!/usr/bin/bash + +SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) + +for dir in "$SCRIPT_DIR"/*; do + if [ -d "$dir" ]; then + echo Found $dir. + if [ -d "$dir/addons" ]; then + rsync -av $dir/addons $SCRIPT_DIR/../ + fi + fi +done + +echo "Submodule addons updated."