2
0

Submodule fixes.

[UPDATED]   InAppSettingsKit now uses the lhunath repo.
[UPDATED]   Fix to updating submodule repo URLs in updateDependencies.
[UPDATED]   Minor fix to PearlEmail.
This commit is contained in:
Maarten Billemont
2013-09-19 11:27:47 -04:00
parent d59c3690d4
commit 7f9aaf4642
3 changed files with 5 additions and 4 deletions

View File

@@ -19,6 +19,9 @@ isCheckedOut() {
! git submodule status | grep -q "^-[^ ]* $modulePath"
}
# git submodule sync -- A bug causes this to init ALL external dependencies.
git submodule sync $(git submodule status | awk '/^ / { print $2 }')
# Check out our missing dependencies
for dependency in "${dependencies[@]}"; do
@@ -29,8 +32,6 @@ done
# Update our modules
# git submodule sync -- A bug causes this to init ALL external dependencies.
git submodule sync $(git submodule status | awk '/^ / { print $2 }')
git submodule update