aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Ouellette <oue.paul18@gmail.com>2019-08-25 20:35:39 -0400
committerHisham Muhammad <hisham@gobolinux.org>2019-08-27 12:49:54 -0300
commitbd6009326fb468890ddabc16d6014916f08710ff (patch)
treea3e74f4f91dca86987932104c24def95f6d7ec7d
parentcffcc251be58914c49a1acbdaf5c38e42f93976c (diff)
downloadluarocks-bd6009326fb468890ddabc16d6014916f08710ff.tar.gz
luarocks-bd6009326fb468890ddabc16d6014916f08710ff.tar.bz2
luarocks-bd6009326fb468890ddabc16d6014916f08710ff.zip
Fix build --no-doc
-rw-r--r--src/luarocks/cmd/build.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/luarocks/cmd/build.lua b/src/luarocks/cmd/build.lua
index 0654b4eb..e4f30715 100644
--- a/src/luarocks/cmd/build.lua
+++ b/src/luarocks/cmd/build.lua
@@ -30,6 +30,7 @@ function cmd_build.add_to_parser(parser)
30 :args("?") 30 :args("?")
31 31
32 cmd:flag("--only-deps", "Installs only the dependencies of the rock.") 32 cmd:flag("--only-deps", "Installs only the dependencies of the rock.")
33 cmd:flag("--no-doc", "Installs the rock without its documentation.")
33 make.cmd_options(cmd) 34 make.cmd_options(cmd)
34end 35end
35 36