zsh/update-submodules.bash

8 lines
161 B
Bash
Raw Permalink Normal View History

2022-07-31 21:16:12 -05:00
#!/usr/bin/env bash
if ! command -v git; then
printf "This script requires git, install it to continue\n" >&2
exit 1
fi
2022-07-31 21:17:35 -05:00
git submodule update --remote --merge