From fa0660538cb250e7a9bc000a4f06d79d4c27d354 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 26 Aug 2008 11:19:06 +0200 Subject: [PATCH] Always run 'git submodule update' when git is in use --- buildconf.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/buildconf.sh b/buildconf.sh index 386ddbc..fafe009 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,10 +1,12 @@ #!/bin/sh test -d config || mkdir config -if test -d m4/.git -a -d doc/common/.git; then - : -else - git submodule init +if test .git; then + if test -d m4/.git -a -d doc/common/.git; then + : + else + git submodule init + fi git submodule update fi -- 1.7.10.4