"-t --output-to" should be an option not a flag

This commit is contained in:
Shemar McLean 2019-02-17 14:12:28 -05:00 committed by leaf
parent bf16c518eb
commit d64467d070

View File

@ -10,7 +10,7 @@ parser:flag("-v --version", "Print version")
parser:flag("-w --watch", "Watch file/directory for updates")
parser:option("--transform", "Transform syntax tree with module")
parser:mutex(
parser:flag("-t --output-to", "Specify where to place compiled files"),
parser:option("-t --output-to", "Specify where to place compiled files"),
parser:option("-o", "Write output to file"),
parser:flag("-p", "Write output to standard output"),
parser:flag("-T", "Write parse tree instead of code (to stdout)"),