mirror of
https://github.com/azerothcore/acore-cms.git
synced 2026-08-17 22:23:06 -04:00
* refactor: remove unused git-subrepo integration and update README with init script instructions * fix: correct initialization order in init script for proper execution * fix: correct path resolution in init script for proper application setup
9 lines
No EOL
268 B
Bash
9 lines
No EOL
268 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Ensure submodules are initialized and updated on pull
|
|
git config submodule.recurse true
|
|
|
|
# Initialize and update all submodules (including nested ones)
|
|
echo "Initializing and updating submodules..."
|
|
git submodule update --init --recursive |