Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/command_line.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Learn more about environments on the [Configuration](configuration.html) guide.
-h, --help Show this help message and exit.
--nginx Generate config for nginx server (default)
--cqueues Generate config for cqueues server
--lua Generate app template file in Lua (defaul)
--lua Generate app template file in Lua (default)
--moonscript, --moon Generate app template file in MoonScript
--etlua-config Use etlua for templated configuration files (eg. nginx.conf)
--git Generate default .gitignore file
Expand Down
2 changes: 1 addition & 1 deletion lapis/cmd/actions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ local COMMANDS = {
do
local _with_0 = command
_with_0:mutex(_with_0:flag("--nginx", "Generate config for nginx server (default)"), _with_0:flag("--cqueues", "Generate config for cqueues server"))
_with_0:mutex(_with_0:flag("--lua", "Generate app template file in Lua (defaul)"), _with_0:flag("--moonscript --moon", "Generate app template file in MoonScript"))
_with_0:mutex(_with_0:flag("--lua", "Generate app template file in Lua (default)"), _with_0:flag("--moonscript --moon", "Generate app template file in MoonScript"))
_with_0:flag("--etlua-config", "Use etlua for templated configuration files (eg. nginx.conf)")
_with_0:flag("--git", "Generate default .gitignore file")
_with_0:flag("--tup", "Generate default Tupfile")
Expand Down
2 changes: 1 addition & 1 deletion lapis/cmd/actions.moon
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ COMMANDS = {
\flag "--cqueues", "Generate config for cqueues server"
)
\mutex(
\flag "--lua", "Generate app template file in Lua (defaul)"
\flag "--lua", "Generate app template file in Lua (default)"
\flag "--moonscript --moon", "Generate app template file in MoonScript"
)
\flag "--etlua-config", "Use etlua for templated configuration files (eg. nginx.conf)"
Expand Down
Loading