Document required script parameters

This commit is contained in:
Antonin Décimo
2019-07-16 10:12:15 +02:00
parent 4682ffef58
commit ff33b0f1e0
2 changed files with 12 additions and 12 deletions

View File

@@ -37,18 +37,18 @@ function Args:initialize()
:count "0-2"
:argname "32|64"
parser:option("-a --author", "Author full name.")
parser:option("-a --author", "Author full name. Required for Debian.")
parser:flag("-b", "Compile new or updated files to LuaJIT bytecode.")
:target("compile")
parser:option("-d --desc", "Project description.")
parser:option("-e --email", "Author email.")
parser:option("-d --desc", "Project description. Required for Debian.")
parser:option("-e --email", "Author email. Required for Debian.")
parser:option("-l --love", "LÖVE version to use.")
:target("loveVersion")
parser:option("-p --package", "Package and command name.")
parser:option("-t --title", "Project title.")
parser:option("-u --url", "Project homepage url.")
parser:option("--uti", "Project Uniform Type Identifier.")
parser:option("-v", "Project version.")
parser:option("-u --url", "Project homepage url. Required for Debian.")
parser:option("--uti", "Project Uniform Type Identifier. Required for macOS.")
parser:option("-v", "Project version. Required for Debian.")
:target("version")
parser:option("-x --exclude", "Exclude file patterns."):count("*")
:target("excludeFileList")