commit | 6ee6223dc1a9eefe97f962675f70503f3dd74588 | [log] [tgz] |
---|---|---|
author | Vincent Driessen <vincent@datafox.nl> | 周一 2月 22 07:45:24 2010 +0100 |
committer | Vincent Driessen <vincent@datafox.nl> | 周一 2月 22 07:45:24 2010 +0100 |
tree | 56ee75068ca32c399b6890044ee8c62c3bf94f38 | |
parent | 55c15539fa56d21ee7eb99c7b8303ee29ec8a3b4 [diff] |
Fix: bug introduced in b25ab83334c14452081af61ca9162d01db40b1e9
diff --git a/gitflow-common b/gitflow-common index 29b7a37..ad1de80 100644 --- a/gitflow-common +++ b/gitflow-common
@@ -236,7 +236,7 @@ } require_local_branch() { - if ! git_local_branch_exists; then + if ! git_local_branch_exists $1; then die "fatal: Local branch '$1' does not exist and is required." fi }