projects
/
yazpp-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
7c64912
)
Always run 'git submodule update' when git is in use
author
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 26 Aug 2008 09:19:06 +0000
(11:19 +0200)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Tue, 26 Aug 2008 09:19:06 +0000
(11:19 +0200)
buildconf.sh
patch
|
blob
|
history
diff --git
a/buildconf.sh
b/buildconf.sh
index
386ddbc
..
fafe009
100755
(executable)
--- 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