Skip to content

Commit

Permalink
import command: sort list of importers when printing (#511)
Browse files Browse the repository at this point in the history
Merge pull request 511
  • Loading branch information
parkr authored Mar 4, 2023
1 parent 6499317 commit 04a551c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll/commands/import.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def init_with_program(prog)
if args.empty?
Jekyll.logger.warn "You must specify an importer."
Jekyll.logger.info "Valid options are:"
importers.each { |i| Jekyll.logger.info "*", i.to_s }
importers.sort.each { |i| Jekyll.logger.info "*", i.to_s }
end
end
end
Expand Down

0 comments on commit 04a551c

Please sign in to comment.