6 lines
203 B
Plaintext
6 lines
203 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
# Initialize and update git submodules to their latest remote commits.
|
||
|
|
if [ -f .gitmodules ]; then
|
||
|
|
git -c protocol.file.allow=always submodule update --init --force --remote --recursive
|
||
|
|
fi
|