Prevent error message on git flow init

As explained by Peter van der Does, the init command does not have the
init function, nor does it need one.
diff --git a/git-flow b/git-flow
index 19c337e..cdf0e07 100755
--- a/git-flow
+++ b/git-flow
@@ -109,7 +109,7 @@
 	fi
 
 	# run the specified action
-  if [ $SUBACTION != "help" ]; then
+  if [ $SUBACTION != "help" ] && [ $SUBCOMMAND != "init" ] ; then
     init
   fi
   cmd_$SUBACTION "$@"