diff options
Diffstat (limited to 'Library/Formula/git-flow.rb')
| -rw-r--r-- | Library/Formula/git-flow.rb | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/Library/Formula/git-flow.rb b/Library/Formula/git-flow.rb index 541fbfe77..7e38e3053 100644 --- a/Library/Formula/git-flow.rb +++ b/Library/Formula/git-flow.rb @@ -1,12 +1,9 @@  require 'formula'  class GitFlow <Formula -  if ARGV.build_head? -    head 'git://github.com/nvie/gitflow.git', :branch => 'develop' -  else -    head 'git://github.com/nvie/gitflow.git', :tag => '0.2.1' -    version '0.2.1' -  end +  url 'git://github.com/nvie/gitflow.git', :tag => '0.2.1' +  version '0.2.1' +  head 'git://github.com/nvie/gitflow.git', :branch => 'develop'    homepage 'http://github.com/nvie/gitflow' | 
