summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAdam Strzelecki <ono@java.pl>2015-05-07 23:07:15 +0200
committerAdam Strzelecki <ono@java.pl>2015-05-07 23:07:15 +0200
commit7e479993a427cd72947ce06b318226ba0269e5f9 (patch)
tree6aae5f96f715ceb9cfe9abd5b4386a348d82df4e
parenta490e13342eb9e43bfc5aed607ff37efd9b26420 (diff)
downloadNim-7e479993a427cd72947ce06b318226ba0269e5f9.tar.gz
Fixup: csources is empty after clone
We actually need to check for existence of csources/.git and then do git
submodule update --init, which pulls the data for submodule.
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 87e12dcfd..91e169241 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,7 @@
 set -e
 set -x
 
-if [ ! -d "csources" ]; then
+if [ ! -e csources/.git ]; then
 	git submodule update --init --depth 1
 fi
 
me/config.def.h?id=96ee9d888cc3cf90da3b6a6852d605255d25d020'>^
295ad21 ^
00ca643 ^
fe2775a ^
349d768 ^

f196b71 ^
3794c62 ^
f196b71 ^
5497268 ^


4246aff ^
5497268 ^
fe2775a ^
4246aff ^
585294c ^

3794c62 ^

f196b71 ^
349d768 ^
e9a0733 ^
349d768 ^


5497268 ^
349d768 ^
349d768 ^
349d768 ^


349d768 ^










































b515765 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91