Add 'b' and 's' aliases for build and serve, respectively
This commit is contained in:
parent
01b11d098e
commit
5a288e7de4
|
@ -9,6 +9,7 @@ module Jekyll
|
||||||
prog.command(:build) do |c|
|
prog.command(:build) do |c|
|
||||||
c.syntax 'build [options]'
|
c.syntax 'build [options]'
|
||||||
c.description 'Build your site'
|
c.description 'Build your site'
|
||||||
|
c.alias :b
|
||||||
|
|
||||||
add_build_options(c)
|
add_build_options(c)
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ module Jekyll
|
||||||
c.syntax 'serve [options]'
|
c.syntax 'serve [options]'
|
||||||
c.description 'Serve your site locally'
|
c.description 'Serve your site locally'
|
||||||
c.alias :server
|
c.alias :server
|
||||||
|
c.alias :s
|
||||||
|
|
||||||
add_build_options(c)
|
add_build_options(c)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue