8 lines
161 B
Bash
Executable File
8 lines
161 B
Bash
Executable File
#!/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 update --remote --merge
|