8 lines
154 B
Bash
8 lines
154 B
Bash
|
#!/usr/bin/env bash
|
||
|
if ! command -v git; then
|
||
|
printf "This script requires git, install it to continue\n" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
git submodule foreach git pull
|