Added instructions to first fetch submodules before installing.
diff --git a/Makefile b/Makefile
index 1da3fa1..8b13f2d 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@
@echo " make uninstall"
install:
+ @test -f gitflow-shFlags || (echo "Run 'git submodule init && git submodule update' first." ; exit 1 )
install -d -m 0755 $(GIT_EXEC_PATH)
install -m 0755 $(EXEC_FILES) $(GIT_EXEC_PATH)
install -m 0644 $(SCRIPT_FILES) $(GIT_EXEC_PATH)
diff --git a/README.mdown b/README.mdown
index f76df03..14378aa 100644
--- a/README.mdown
+++ b/README.mdown
@@ -12,7 +12,12 @@
Installing git-flow
-------------------
-To install `git-flow` as a real `git` subcommand, run:
+After downloading the sources from Github, also fetch the submodules:
+
+ $ git submodule init
+ $ git submodule update
+
+Then, you can install `git-flow`, using:
$ sudo make install