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:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-07-10 01:22:24 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-07-10 01:22:24 +0300
commitc85c0b43cd50e58ff24025444e46ed9b301b8860 (patch)
treefac808f877948b75904a60e0bb049af9a052cb69 /Makefile
parent5c16b401e40fd1c9235d47ace9ab99bd97ad91c3 (diff)
[Build] Add `git submodule sync` as a pre-build command.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1f190b35c5..1b04f74ad4 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ all: update_submodules all-recursive
update_submodules:
if test -d ".git"; then \
+ git submodule sync \
git submodule update --init --recursive || exit 1; \
fi