Skip to content

Commit

Permalink
Update the help message and comments to use config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Apr 23, 2009
1 parent dd268fa commit 563933f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/jekyll
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Basic Command Line Usage:
jekyll <path to write generated site> # . -> <path>
jekyll <path to source> <path to write generated site> # <path> -> <path>
Configuration is read from '<source>/_config.yaml' but can be overriden
Configuration is read from '<source>/_config.yml' but can be overriden
using the following options:
HELP
Expand Down Expand Up @@ -137,4 +137,4 @@ if options['server']

trap("INT") { s.shutdown }
t.join()
end
end
4 changes: 2 additions & 2 deletions lib/jekyll.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
require 'jekyll/albino'

module Jekyll
# Default options. Overriden by values in _config.yaml or command-line opts.
# Default options. Overriden by values in _config.yml or command-line opts.
# (Strings rather symbols used for compatability with YAML)
DEFAULTS = {
'auto' => false,
Expand Down Expand Up @@ -61,7 +61,7 @@ def self.configuration(override)
# then, we need to know where to look for _config.yml
source = override['source'] || Jekyll::DEFAULTS['source']

# Get configuration from <source>/_config.yaml
# Get configuration from <source>/_config.yml
config = {}
config_file = File.join(source, '_config.yml')
begin
Expand Down

0 comments on commit 563933f

Please sign in to comment.