8 lines
101 B
Bash
8 lines
101 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
|
||
|
git submodule sync --recursive
|
||
|
git submodule update --init --recursive
|
||
|
|