Compare commits

..

No commits in common. "3186e514e6453cb3f5d533de10b98ac0bd223e4b" and "b5cc20367c373f6c93d19f63d90b180955a003c0" have entirely different histories.

2 changed files with 0 additions and 15 deletions

1
.gitignore vendored
View file

@ -1,3 +1,2 @@
# Godot 4+ specific ignores
.godot/
addons/gdata_orm

View file

@ -1,14 +0,0 @@
#!/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."