Merge pull request #5135 from chrisfinazzo/baseurl-subcommand
Merge pull request 5135
This commit is contained in:
commit
6b0b6418dc
|
@ -55,6 +55,8 @@ module Jekyll
|
||||||
c.option "limit_posts", "--limit_posts MAX_POSTS", Integer,
|
c.option "limit_posts", "--limit_posts MAX_POSTS", Integer,
|
||||||
"Limits the number of posts to parse and publish"
|
"Limits the number of posts to parse and publish"
|
||||||
c.option "watch", "-w", "--[no-]watch", "Watch for changes and rebuild"
|
c.option "watch", "-w", "--[no-]watch", "Watch for changes and rebuild"
|
||||||
|
c.option "baseurl", "-b", "--baseurl URL",
|
||||||
|
"Serve the website from the given base URL"
|
||||||
c.option "force_polling", "--force_polling", "Force watch to use polling"
|
c.option "force_polling", "--force_polling", "Force watch to use polling"
|
||||||
c.option "lsi", "--lsi", "Use LSI for improved related posts"
|
c.option "lsi", "--lsi", "Use LSI for improved related posts"
|
||||||
c.option "show_drafts", "-D", "--drafts", "Render posts in the _drafts folder"
|
c.option "show_drafts", "-D", "--drafts", "Render posts in the _drafts folder"
|
||||||
|
|
|
@ -9,7 +9,6 @@ module Jekyll
|
||||||
"detach" => ["-B", "--detach", "Run the server in the background"],
|
"detach" => ["-B", "--detach", "Run the server in the background"],
|
||||||
"ssl_key" => ["--ssl-key [KEY]", "X.509 (SSL) Private Key."],
|
"ssl_key" => ["--ssl-key [KEY]", "X.509 (SSL) Private Key."],
|
||||||
"port" => ["-P", "--port [PORT]", "Port to listen on"],
|
"port" => ["-P", "--port [PORT]", "Port to listen on"],
|
||||||
"baseurl" => ["-b", "--baseurl [URL]", "Base URL"],
|
|
||||||
"show_dir_listing" => ["--show-dir-listing",
|
"show_dir_listing" => ["--show-dir-listing",
|
||||||
"Show a directory listing instead of loading your index file."],
|
"Show a directory listing instead of loading your index file."],
|
||||||
"skip_initial_build" => ["skip_initial_build", "--skip-initial-build",
|
"skip_initial_build" => ["skip_initial_build", "--skip-initial-build",
|
||||||
|
|
Loading…
Reference in New Issue