zsh/update-submodules.bash

8 lines
154 B
Bash
Raw 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
git submodule foreach git pull