Skip to content

Commit

Permalink
options: show --HEAD and --devel when appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
adamv authored and ehershey committed Apr 4, 2014
1 parent 755ac80 commit 1442847
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Library/Homebrew/cmd/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,13 @@ def dump_options_for_formula f
puts opt.flag
puts "\t"+opt.description
end
if f.devel
puts '--devel'
puts "\tinstall development version #{f.devel.version}"
end
if f.head
puts '--HEAD'
puts "\tinstall HEAD version"
end
end
end

0 comments on commit 1442847

Please sign in to comment.