Update history for --base-url option.
This commit is contained in:
parent
4a8fc1fa6e
commit
38ed81e0ce
|
@ -3,6 +3,7 @@
|
|||
* Add wordpress.com importer (#207)
|
||||
* Add --limit-posts cli option (#212)
|
||||
* Add uri_escape filter (#234)
|
||||
* Add --base-url cli option (#235)
|
||||
* Bug Fixes
|
||||
* Fixed filename basename generation (#208)
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ opts = OptionParser.new do |opts|
|
|||
options['server_port'] = port unless port.nil?
|
||||
end
|
||||
|
||||
opts.on("--baseurl [BASE_URL]", "Serve website from a given base URL (default '/'") do |baseurl|
|
||||
opts.on("--base-url [BASE_URL]", "Serve website from a given base URL (default '/'") do |baseurl|
|
||||
options['baseurl'] = baseurl
|
||||
end
|
||||
|
||||
|
@ -92,7 +92,6 @@ opts = OptionParser.new do |opts|
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
opts.on("--url [URL]", "Set custom site.url") do |url|
|
||||
options['url'] = url
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue