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 <teromario@yahoo.com>2015-07-10 01:42:38 +0300
committerMarius Ungureanu <teromario@yahoo.com>2015-07-10 01:42:38 +0300
commit7d52c37a4e8646f1d7b1f5c0ad2be0e0e9a8132e (patch)
tree9dc32fef494f7ae44d4cea2e5c84d2f5b784d7cb /Makefile
parent7522a46344738a0ba40b0af9a77ca7e6fcc3cfcf (diff)
Missing SEMICOLON
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1b04f74ad4..1a90af8a5e 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ all: update_submodules all-recursive
update_submodules:
if test -d ".git"; then \
- git submodule sync \
+ git submodule sync; \
git submodule update --init --recursive || exit 1; \
fi