From bb91a08ffd0ccc0bf402f9365ebdebcf4f5acd6d Mon Sep 17 00:00:00 2001 From: Jeremy Dubreil Date: Wed, 14 Mar 2018 08:57:51 -0700 Subject: [PATCH] [infer][buck] remove unecessary --deep option when using Buck Reviewed By: sblackshear Differential Revision: D7259387 fbshipit-source-id: 18098dd --- infer/lib/python/inferlib/bucklib.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/infer/lib/python/inferlib/bucklib.py b/infer/lib/python/inferlib/bucklib.py index 391695cde..5ad6eabd1 100644 --- a/infer/lib/python/inferlib/bucklib.py +++ b/infer/lib/python/inferlib/bucklib.py @@ -244,8 +244,6 @@ def parse_buck_command(args): base_cmd_without_targets = [p for p in buck_args if p not in parsed_args.targets] buck_build_command = ['buck', build_keyword] - if not parsed_args.deep: - buck_build_command.append('--deep') base_cmd = buck_build_command + base_cmd_without_targets return base_cmd, parsed_args