Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan@xamarin.com>2012-12-03 14:23:37 +0400
committerAlan McGovern <alan@xamarin.com>2012-12-03 14:23:37 +0400
commit7e169d87254beb4af3cdcf9393c7c6dd366a533e (patch)
tree62a0150be1d8cda564448973d149b89c1e7cdc9c /Makefile
parenta705f4d4eb9e94b6243b6b4d2abbd1c6fac983fa (diff)
[Build] if something goes wrong updating the submodules, bail out
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 972382f9b7..166c6aeeca 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ all: update_submodules all-recursive
update_submodules:
if test -d ".git"; then \
- git submodule update --init --recursive; \
+ git submodule update --init --recursive || exit 1; \
fi
top_srcdir=.