Fix git submodule update command to properly pin submodule dependencies: https://github.com/anishathalye/dotbot/issues/314
parent
e33085abc6
commit
50a04ad3db
1 changed files with 2 additions and 1 deletions
|
@ -60,7 +60,8 @@ BASE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
|
||||||
|
|
||||||
cd "${BASE_DIR}"
|
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
|
while IFS= read -r config; do
|
||||||
|
|
Loading…
Reference in a new issue