1
0
Fork 0
mirror of synced 2024-11-22 00:05:34 -05:00

Fix git submodule update command to properly pin submodule dependencies: https://github.com/anishathalye/dotbot/issues/314

Michael Parque 2022-05-27 10:47:39 -04:00
parent e33085abc6
commit 50a04ad3db

@ -60,7 +60,8 @@ BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${BASE_DIR}"
git submodule update --init --recursive --remote
git -C "${DOTBOT_DIR}" submodule sync --quiet --recursive
git submodule update --init --recursive "${DOTBOT_DIR}"
while IFS= read -r config; do