Skip to content

Commit

Permalink
Merge 3785620 into 80e00e2
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Dec 7, 2018
2 parents 80e00e2 + 3785620 commit 644eafd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rake/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def trace(*strings) # :nodoc:

def sort_options(options) # :nodoc:
options.sort_by { |opt|
opt.select { |o| o =~ /^-/ }.map(&:downcase).sort.reverse
opt.select { |o| /\A-/ === o }.map(&:downcase).sort.reverse
}
end
private :sort_options
Expand Down

0 comments on commit 644eafd

Please sign in to comment.