4 lines
100 B
Bash
4 lines
100 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Updating all submodules recursively..."
|
||
|
git submodule update --recursive --remote
|