commit | 9277024410e8f83c22d7d1fa79678b7a4797da43 | [log] [tgz] |
---|---|---|
author | Vincent Driessen <vincent@datafox.nl> | 周四 2月 04 11:49:47 2010 +0100 |
committer | Vincent Driessen <vincent@datafox.nl> | 周四 2月 04 11:49:47 2010 +0100 |
tree | b2223bb5d5d66bf57ec4bfa6df70741cdf9ec30b | |
parent | 3c337fb5e40cc035f6fe6b09b16e54de72de3b0b [diff] [blame] |
Fix: error message for "Unknown subcommand"
diff --git a/git-flow b/git-flow index bfbd76e..f7a826d 100755 --- a/git-flow +++ b/git-flow
@@ -90,7 +90,7 @@ SUBACTION="$1"; shift fi if ! typeset -f "cmd_$SUBACTION" 2>&1 >/dev/null; then - warn "Unknown subcommand: '$1'" + warn "Unknown subcommand: '$SUBACTION'" usage exit 1 fi