[man] fix wrong section for --capture-blacklist

Summary: meh

Reviewed By: ngorogiannis

Differential Revision: D19175683

fbshipit-source-id: 1210bf1de
master
Jules Villard 5 years ago committed by Facebook Github Bot
parent 47485cc3ef
commit c3688b75e6

@ -134,10 +134,6 @@ BUCK FLAVORS OPTIONS
Use this flag if infer doesn't find any files to analyze after a Use this flag if infer doesn't find any files to analyze after a
successful capture. (Conversely: --no-buck-merge-all-deps) successful capture. (Conversely: --no-buck-merge-all-deps)
--capture-blacklist regex
Skip capture of files matched by the specified OCaml regular
expression (only supported by the javac integration for now).
--flavors --flavors
Activates: Buck integration using the infer-capture-all Buck Activates: Buck integration using the infer-capture-all Buck
flavor (clang only). Use for clang-based Buck projects (as opposed flavor (clang only). Use for clang-based Buck projects (as opposed
@ -257,6 +253,10 @@ JAVA OPTIONS
--bootclasspath string --bootclasspath string
Specify the Java bootclasspath Specify the Java bootclasspath
--capture-blacklist regex
Skip capture of files matched by the specified OCaml regular
expression (only supported by the javac integration for now).
--dependencies --dependencies
Activates: Translate all the dependencies during the capture. The Activates: Translate all the dependencies during the capture. The
classes in the given jar file will be translated. No sources classes in the given jar file will be translated. No sources

@ -179,15 +179,15 @@ BUCK FLAVORS OPTIONS
Skip capture of files matched by the specified regular expression Skip capture of files matched by the specified regular expression
(only the "flavors (C++)" Buck integration is supported, not (only the "flavors (C++)" Buck integration is supported, not
Java). Java).
--capture-blacklist regex
Skip capture of files matched by the specified OCaml regular
expression (only supported by the javac integration for now).
CLANG OPTIONS CLANG OPTIONS
--compute-analytics --compute-analytics
Activates: Emit analytics as info-level issues, like component kit Activates: Emit analytics as info-level issues, like component kit
line count and component kit file cyclomatic complexity line count and component kit file cyclomatic complexity
(Conversely: --no-compute-analytics) (Conversely: --no-compute-analytics)
JAVA OPTIONS
--capture-blacklist regex
Skip capture of files matched by the specified OCaml regular
expression (only supported by the javac integration for now).
ENVIRONMENT ENVIRONMENT

@ -928,7 +928,7 @@ and capture =
and capture_blacklist = and capture_blacklist =
CLOpt.mk_string_opt ~long:"capture-blacklist" CLOpt.mk_string_opt ~long:"capture-blacklist"
~in_help:InferCommand.[(Run, manual_buck_flavors); (Capture, manual_buck_flavors)] ~in_help:InferCommand.[(Run, manual_java); (Capture, manual_java)]
~meta:"regex" ~meta:"regex"
"Skip capture of files matched by the specified OCaml regular expression (only supported by \ "Skip capture of files matched by the specified OCaml regular expression (only supported by \
the javac integration for now)." the javac integration for now)."

Loading…
Cancel
Save