Compare commits
2 commits
b5cc20367c
...
3186e514e6
| Author | SHA1 | Date | |
|---|---|---|---|
| 3186e514e6 | |||
| 85ba302fe0 |
2 changed files with 15 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,2 +1,3 @@
|
|||
# Godot 4+ specific ignores
|
||||
.godot/
|
||||
addons/gdata_orm
|
||||
|
|
|
|||
14
submodules/update_addons.sh
Executable file
14
submodules/update_addons.sh
Executable file
|
|
@ -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."
|
||||
Loading…
Add table
Add a link
Reference in a new issue