[asterisk-scf-commits] asterisk-scf/integration/gitall.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Fri Oct 8 13:58:56 CDT 2010
branch "master" has been updated
via 6e2be9271b1897120ff6dc979de190f51e0a4d98 (commit)
from 1563163362c7a92c3c1e11c907d004c7954453b8 (commit)
Summary of changes:
gitall-asterisk-scf.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 6e2be9271b1897120ff6dc979de190f51e0a4d98
Author: David M. Lee <dlee at digium.com>
Date: Fri Oct 8 13:58:47 2010 -0500
No longer require recursive update of submodules.
diff --git a/gitall-asterisk-scf.sh b/gitall-asterisk-scf.sh
index d9efef5..1c0b864 100755
--- a/gitall-asterisk-scf.sh
+++ b/gitall-asterisk-scf.sh
@@ -69,13 +69,13 @@ for repo in "${repos[@]}"; do
if [ -d ${repoDir}/.git ]; then
if ( cd ${repoDir} && git rev-parse --verify @{upstream} > /dev/null 2>&1 ); then
echo ">> Updating from repo ${repoUri}"
- ( cd ${repoDir} && git pull && git submodule update --init --recursive)
+ ( cd ${repoDir} && git pull )
else
echo "-- Skipping ${repoDir}; no upstream branch"
fi
else
echo ">> Cloning from ${repoUri} to ${repoDir}"
- git clone --recursive ${repoUri} ${repoDir}
+ git clone ${repoUri} ${repoDir}
fi
echo " "
done
-----------------------------------------------------------------------
--
asterisk-scf/integration/gitall.git
More information about the asterisk-scf-commits
mailing list