commit | dc902eda3e79ae00a293b9dd2006c019ab252520 | [log] [tgz] |
---|---|---|
author | pccr <pcragone@gmail.com> | 周六 4月 21 00:23:55 2012 -0400 |
committer | pccr <pcragone@gmail.com> | 周六 4月 21 00:23:55 2012 -0400 |
tree | a91a72d7d68d72f2ad1364c085d5ec4b8f2f9134 | |
parent | ab7fda21f1009d8cc073fc9ae6152731f6bfee8a [diff] [blame] |
Added 'init()' function to git-flow-{feature,release,hotfix,support}, which gets called if subargument is not help
diff --git a/git-flow b/git-flow index 93e9f0f..19c337e 100755 --- a/git-flow +++ b/git-flow
@@ -109,7 +109,10 @@ fi # run the specified action - cmd_$SUBACTION "$@" + if [ $SUBACTION != "help" ]; then + init + fi + cmd_$SUBACTION "$@" } main "$@"